(message: string, status: number, errorType?: string)
| 58 | /** Server-provided error type, e.g. "environment_expired". */ |
| 59 | readonly errorType: string | undefined |
| 60 | constructor(message: string, status: number, errorType?: string) { |
| 61 | super(message) |
| 62 | this.name = 'BridgeFatalError' |
| 63 | this.status = status |
| 64 | this.errorType = errorType |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | export function createBridgeApiClient(deps: BridgeApiDeps): BridgeApiClient { |
nothing calls this directly
no outgoing calls
no test coverage detected