()
| 57 | } |
| 58 | |
| 59 | override get message(): string { |
| 60 | return [ |
| 61 | `Could not reach ${this.method} ${this.url}.`, |
| 62 | `This failed before the server returned an HTTP response.`, |
| 63 | this.description, |
| 64 | `Check your network, proxy, or VPN configuration and try again.`, |
| 65 | ] |
| 66 | .filter(Boolean) |
| 67 | .join("\n") |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | export type AccountError = AccountRepoError | AccountServiceError | AccountTransportError |