@fabrix/spool-tapestries
Version:
Spool - Tapestries, Easy RESTful Services
15 lines (14 loc) • 483 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class TapestryControllerNotInstalledError extends RangeError {
constructor() {
super(`
The orm spool installed does not contain a TapestryController.
Please check the orm and that it supports Tapestries.
`);
}
get name() {
return 'TapestryControllerNotInstalledError';
}
}
exports.TapestryControllerNotInstalledError = TapestryControllerNotInstalledError;