UNPKG

@jirutka/ajv-cli

Version:

CLI for Ajv JSON Schema Validator with human-friendly error messages

12 lines 323 B
export class ProgramError extends Error { exitCode; constructor(message, options = {}) { const { exitCode, ...opts } = options; super(message, opts); this.exitCode = exitCode ?? 1; } } export class UsageError extends ProgramError { exitCode = 64; } //# sourceMappingURL=errors.js.map