UNPKG

deepify

Version:
22 lines (18 loc) 476 B
/** * Created by CCristi on 5/3/16. */ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.EngineNotSupportedException = undefined; var _Exception = require('../../Exception/Exception'); class EngineNotSupportedException extends _Exception.Exception { /** * @param {String} engine */ constructor(engine) { super(`'${engine}' is not supported yet`); } } exports.EngineNotSupportedException = EngineNotSupportedException;