UNPKG

deepify

Version:
25 lines (21 loc) 432 B
/** * Created by AlexanderC on 5/25/15. */ 'use strict'; 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;