UNPKG

cmte

Version:

Design by Committee™ except it's just you and LLMs

8 lines (7 loc) 173 B
// Removing unused error classes export class ValidationError extends Error { constructor(message: string) { super(message); this.name = 'ValidationError'; } }