MitocGroup/deep-framework

View on GitHub
src/deep-db/lib/Vogels/Exceptions/Exception.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Created by Stefan Hariton on 6/25/15.
 */

'use strict';

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

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