deepify
Version:
DEEP Development Tools
25 lines (21 loc) • 432 B
JavaScript
/**
* Created by AlexanderC on 5/25/15.
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Exception = undefined;
var _Exception = require('../../Exception/Exception');
/**
* throws when duplicate property root found
*/
class Exception extends _Exception.Exception {
/**
* @param {Array} args
*/
constructor(...args) {
super(...args);
}
}
exports.Exception = Exception;