@bshg/validation
Version:
Validation Library for TypeScript projects
19 lines (18 loc) • 592 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BshBatchValidationError = exports.BshValidationError = void 0;
const exceptions_1 = require("../exceptions");
class BshValidationError extends exceptions_1.BshgError {
constructor(results) {
super();
this.results = results;
}
}
exports.BshValidationError = BshValidationError;
class BshBatchValidationError extends exceptions_1.BshgError {
constructor(results) {
super();
this.results = results;
}
}
exports.BshBatchValidationError = BshBatchValidationError;