UNPKG

tynder

Version:

TypeScript friendly Data validator for JavaScript.

11 lines 294 B
// Copyright (c) 2019 Shellyl_N and Authors // license: ISC // https://github.com/shellyln export class ValidationError extends Error { constructor(message, ty, ctx) { super(message); this.ty = ty; this.ctx = ctx; } } //# sourceMappingURL=errors.js.map