MitocGroup/deep-framework

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

Summary

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

'use strict';

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

/**
 * Base exception
 */
export class Exception extends BaseException {
  /**
   * @param {Array} args
   */
  constructor(...args) {
    super(...args);
  }
}