deepify
Version:
DEEP Development Tools
22 lines (18 loc) • 476 B
JavaScript
/**
* Created by CCristi on 5/3/16.
*/
;
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;