MitocGroup/deep-framework

View on GitHub
src/deep-cache/lib/Driver/Exception/NoFlushException.js

Summary

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

'use strict';

import {Exception} from './Exception';

/**
 * Thrown if flush() is not implemented
 */
export class NoFlushException extends Exception {
  constructor() {
    super('Flush is not implemented for this driver');
  }
}