UNPKG

@nlabs/arkhamjs-example-react

Version:
9 lines (7 loc) 168 B
export class UserError extends Error { errors: string[]; constructor(msg: string, errors: string[] = []) { super(msg); this.errors = errors || []; } }