@tvkitchen/countertop
Version:
The entry point for developers who want to set up a TV Kitchen.
12 lines (11 loc) • 332 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ValidationError = void 0;
class ValidationError extends Error {
constructor(message, errors) {
super(message);
this.name = this.constructor.name;
this.errors = errors;
}
}
exports.ValidationError = ValidationError;