(message: string, context?: Record<string, any>)
| 14 | |
| 15 | export class ValidationError extends AppError { |
| 16 | constructor(message: string, context?: Record<string, any>) { |
| 17 | super(message, 'VALIDATION_ERROR', 400, true, context); |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | export class NotFoundError extends AppError { |
nothing calls this directly
no outgoing calls
no test coverage detected