| 987 | } |
| 988 | |
| 989 | export interface Exception extends Error { |
| 990 | status: number; |
| 991 | } |
| 992 | |
| 993 | export class ValidateError extends Error implements Exception { |
| 994 | public status = 400; |
nothing calls this directly
no outgoing calls
no test coverage detected