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