UNPKG

deepify

Version:
23 lines (19 loc) 565 B
/** * Created by CCristi <ccovali@mitocgroup.com> on 4/28/16. */ 'use strict'; 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;