meru-stablecoin-lib
Version:
A comprehensive TypeScript library for stablecoin operations including encryption utilities, error handling, and validation tools
13 lines • 441 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ValidationError = void 0;
class ValidationError extends Error {
constructor(message, errors) {
super(message);
this.name = "ValidationError";
this.errors = errors;
Object.setPrototypeOf(this, ValidationError.prototype);
}
}
exports.ValidationError = ValidationError;
//# sourceMappingURL=validation-error.util.js.map