UNPKG

@tvkitchen/countertop

Version:

The entry point for developers who want to set up a TV Kitchen.

15 lines (12 loc) 284 B
import type { ErrorObject } from 'ajv' export class ValidationError extends Error { public errors?: ErrorObject[] | null public constructor( message?: string, errors?: ErrorObject[] | null, ) { super(message) this.name = this.constructor.name this.errors = errors } }