(HTTPClient client)
| 59 | |
| 60 | // Tries to parse the raw response from the request. |
| 61 | protected void parse(HTTPClient client) { |
| 62 | parseStatusCode(); |
| 63 | if (this.statusCode != 204) { |
| 64 | parseData(); |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | // Detects of any exceptions have occured and throws the appropriate exceptions. |
| 69 | protected void detectError(HTTPClient client) throws ResponseException { |