public abstract class HttpStatusCodeException extends RestClientException
HttpStatus.| Modifier | Constructor and Description | 
|---|---|
| protected  | HttpStatusCodeException(HttpStatus statusCode)Construct a new instance of  HttpStatusCodeExceptionbased on anHttpStatus. | 
| protected  | HttpStatusCodeException(HttpStatus statusCode,
                       String statusText)Construct a new instance of  HttpStatusCodeExceptionbased on anHttpStatusand status text. | 
| protected  | HttpStatusCodeException(HttpStatus statusCode,
                       String statusText,
                       byte[] responseBody,
                       Charset responseCharset)Construct a new instance of  HttpStatusCodeExceptionbased on anHttpStatus, status text, and response body content. | 
| protected  | HttpStatusCodeException(HttpStatus statusCode,
                       String statusText,
                       HttpHeaders responseHeaders,
                       byte[] responseBody,
                       Charset responseCharset)Construct a new instance of  HttpStatusCodeExceptionbased on anHttpStatus, status text, and response body content. | 
| Modifier and Type | Method and Description | 
|---|---|
| byte[] | getResponseBodyAsByteArray()Return the response body as a byte array. | 
| String | getResponseBodyAsString()Return the response body as a string. | 
| HttpHeaders | getResponseHeaders()Return the HTTP response headers. | 
| HttpStatus | getStatusCode()Return the HTTP status code. | 
| String | getStatusText()Return the HTTP status text. | 
contains, getMessage, getMostSpecificCause, getRootCauseaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringprotected HttpStatusCodeException(HttpStatus statusCode)
HttpStatusCodeException based on an
 HttpStatus.statusCode - the status codeprotected HttpStatusCodeException(HttpStatus statusCode, String statusText)
HttpStatusCodeException based on an
 HttpStatus and status text.statusCode - the status codestatusText - the status textprotected HttpStatusCodeException(HttpStatus statusCode, String statusText, byte[] responseBody, 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, String statusText, HttpHeaders responseHeaders, byte[] responseBody, 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 String getStatusText()
public HttpHeaders getResponseHeaders()
public byte[] getResponseBodyAsByteArray()
public String getResponseBodyAsString()