* Builds the response decoding error message from the response status, optional description, and request details. * * @since 4.0.0
()
| 231 | * @since 4.0.0 |
| 232 | */ |
| 233 | override get message() { |
| 234 | const info = `${this.response.status} ${this.methodAndUrl}` |
| 235 | return formatMessage(formatReason(this._tag), this.description, info) |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | /** |
nothing calls this directly
no test coverage detected