1234567891011 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.InvalidRouteException = void 0;
- class InvalidRouteException extends Error {
- constructor(file) {
- super(`Invalid route: ${file}`);
- this.name = 'InvalidRoute';
- }
- }
- exports.InvalidRouteException = InvalidRouteException;
- //# sourceMappingURL=InvalidRouteException.js.map
|