public abstract class HttpStatusCodeException extends RestClientException
HttpStatus.| Modifier | Constructor and Description |
|---|---|
protected |
HttpStatusCodeException(HttpStatus statusCode)
Construct a new instance of
HttpStatusCodeException based on an
HttpStatus. |
protected |
HttpStatusCodeException(HttpStatus statusCode,
java.lang.String statusText)
Construct a new instance of
HttpStatusCodeException based on an
HttpStatus and status text. |
protected |
HttpStatusCodeException(HttpStatus statusCode,
java.lang.String statusText,
byte[] responseBody,
java.nio.charset.Charset responseCharset)
Construct a new instance of
HttpStatusCodeException based on an
HttpStatus, status text, and response body content. |
protected |
HttpStatusCodeException(HttpStatus statusCode,
java.lang.String statusText,
HttpHeaders responseHeaders,
byte[] responseBody,
java.nio.charset.Charset responseCharset)
Construct a new instance of
HttpStatusCodeException based on an
HttpStatus, status text, and response body content. |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getResponseBodyAsByteArray()
Return the response body as a byte array.
|
java.lang.String |
getResponseBodyAsString()
Return the response body as a string.
|
HttpHeaders |
getResponseHeaders()
Return the HTTP response headers.
|
HttpStatus |
getStatusCode()
Return the HTTP status code.
|
java.lang.String |
getStatusText()
Return the HTTP status text.
|
contains, getMessage, getMostSpecificCause, getRootCauseprotected HttpStatusCodeException(HttpStatus statusCode)
HttpStatusCodeException based on an
HttpStatus.statusCode - the status codeprotected HttpStatusCodeException(HttpStatus statusCode, java.lang.String statusText)
HttpStatusCodeException based on an
HttpStatus and status text.statusCode - the status codestatusText - the status textprotected HttpStatusCodeException(HttpStatus statusCode, java.lang.String statusText, byte[] responseBody, java.nio.charset.Charset responseCharset)
HttpStatusCodeException based on an
HttpStatus, status text, and response body content.statusCode - the status codestatusText - the status textresponseBody - the response body content, may be nullresponseCharset - the response body charset, may be nullprotected HttpStatusCodeException(HttpStatus statusCode, java.lang.String statusText, HttpHeaders responseHeaders, byte[] responseBody, java.nio.charset.Charset responseCharset)
HttpStatusCodeException based on an
HttpStatus, status text, and response body content.statusCode - the status codestatusText - the status textresponseHeaders - the response headers, may be nullresponseBody - the response body content, may be nullresponseCharset - the response body charset, may be nullpublic HttpStatus getStatusCode()
public java.lang.String getStatusText()
public HttpHeaders getResponseHeaders()
public byte[] getResponseBodyAsByteArray()
public java.lang.String getResponseBodyAsString()