import { InputTypings } from '../parser/types_parser'; export class ParserInvalidArgumentsError extends TypeError { constructor( public type: InputTypings.SupportedRecordType, public actual: number, public expected: string | number ) { super(''); } }