@lakutata/core
Version:
Lakutata Framework Core
12 lines • 425 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ValidationException = void 0;
const Exception_1 = require("../base/abstracts/Exception");
class ValidationException extends Exception_1.Exception {
constructor() {
super(...arguments);
this.errno = 'E_VALIDATION';
}
}
exports.ValidationException = ValidationException;
//# sourceMappingURL=ValidationException.js.map