MitocGroup/deep-framework

View on GitHub
src/deep-resource/lib/Resource/Exception/MissingCacheImplementationException.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Created by AlexanderC on 6/10/15.
 */

'use strict';

import {Exception} from '../../Exception/Exception';

export class MissingCacheImplementationException extends Exception {
  constructor() {
    super('Missing cache implementation in Request object');
  }
}