UNPKG

@siren-js/client

Version:
11 lines (10 loc) 227 B
/** * Wraps a {@linkcode NegativeValidationResult} as an `Error` */ export class ValidationError extends Error { result; constructor(result) { super('Validation failed'); this.result = result; } }