(status: number, message: string, details?: string)
| 58 | status: number = 0; |
| 59 | details: string | undefined; |
| 60 | constructor(status: number, message: string, details?: string) { |
| 61 | super(message); |
| 62 | this.status = status; |
| 63 | this.details = details; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | export default class ApiClient { |
nothing calls this directly
no outgoing calls
no test coverage detected