mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 03:19:31 +08:00
11 lines
No EOL
337 B
Text
11 lines
No EOL
337 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
class ValidationError extends Error {
|
|
constructor(errors) {
|
|
super("validation failed");
|
|
this.errors = errors;
|
|
this.ajv = this.validation = true;
|
|
}
|
|
}
|
|
exports.default = ValidationError;
|
|
//# sourceMappingURL=validation_error.js.map |