(code: ORPCErrorCode, status: number | undefined)
| 87 | export type ORPCErrorCode = CommonORPCErrorCode | (string & {}) |
| 88 | |
| 89 | export function fallbackORPCErrorStatus(code: ORPCErrorCode, status: number | undefined): number { |
| 90 | return status ?? (COMMON_ORPC_ERROR_DEFS as any)[code]?.status ?? 500 |
| 91 | } |
| 92 | |
| 93 | export function fallbackORPCErrorMessage(code: ORPCErrorCode, message: string | undefined): string { |
| 94 | return message || (COMMON_ORPC_ERROR_DEFS as any)[code]?.message || code |
no outgoing calls
no test coverage detected