| 10 | // ============================================================================ |
| 11 | |
| 12 | interface AppErrorConfig { |
| 13 | code: string |
| 14 | message: string |
| 15 | userMessage: string |
| 16 | isRetryable: boolean |
| 17 | statusCode?: number |
| 18 | technicalDetails?: Record<string, unknown> |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * Base application error class |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…