deepify
Version:
DEEP Development Tools
23 lines (19 loc) • 565 B
JavaScript
/**
* Created by CCristi <ccovali@mitocgroup.com> on 4/28/16.
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.InvalidGenerationSchema = undefined;
var _Exception = require('../../Exception/Exception');
class InvalidGenerationSchema extends _Exception.Exception {
/**
* @param {String} generatorName
* @param {String[]} errors
*/
constructor(generatorName, errors) {
super(`Invalid generation schema for '${generatorName}': ${errors}`);
}
}
exports.InvalidGenerationSchema = InvalidGenerationSchema;