lore-hook-connect
Version:
A lore hook that generates dialogs using Bootstrap
12 lines (11 loc) • 461 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = InvalidBlueprintError;
function InvalidBlueprintError(invalidBlueprintName, valueBlueprintNames) {
var error = new Error('There was no blueprint found matching the name \'' + invalidBlueprintName + '\'.\n Valid blueprints are: ' + valueBlueprintNames.join(', '));
error.name = 'InvalidBlueprintError';
return error;
}
module.exports = exports['default'];
;