@lakutata/core
Version:
Lakutata Framework Core
17 lines • 563 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ComponentNotFoundException = void 0;
const Exception_1 = require("../base/abstracts/Exception");
class ComponentNotFoundException extends Exception_1.Exception {
constructor() {
super(...arguments);
this.errno = 'E_COMPONENT_NOT_FOUND';
}
templates() {
return [
'Component \'{0}\' not found'
];
}
}
exports.ComponentNotFoundException = ComponentNotFoundException;
//# sourceMappingURL=ComponentNotFoundException.js.map