public abstract class HttpStatusCodeException extends RestClientResponseException
HttpStatus.| Modifier | Constructor and Description | 
|---|---|
| protected  | HttpStatusCodeException(HttpStatus statusCode)Construct a new instance with an  HttpStatus. | 
| protected  | HttpStatusCodeException(HttpStatus statusCode,
                       java.lang.String statusText)Construct a new instance with an  HttpStatusand status text. | 
| protected  | HttpStatusCodeException(HttpStatus statusCode,
                       java.lang.String statusText,
                       byte[] responseBody,
                       java.nio.charset.Charset responseCharset)Construct instance with an  HttpStatus, status text, and content. | 
| protected  | HttpStatusCodeException(HttpStatus statusCode,
                       java.lang.String statusText,
                       HttpHeaders responseHeaders,
                       byte[] responseBody,
                       java.nio.charset.Charset responseCharset)Construct instance with an  HttpStatus, status text, content, and
 a response charset. | 
| Modifier and Type | Method and Description | 
|---|---|
| HttpStatus | getStatusCode()Return the HTTP status code. | 
getRawStatusCode, getResponseBodyAsByteArray, getResponseBodyAsString, getResponseHeaders, getStatusTextcontains, getMessage, getMostSpecificCause, getRootCauseprotected HttpStatusCodeException(HttpStatus statusCode)
HttpStatus.statusCode - the status codeprotected HttpStatusCodeException(HttpStatus statusCode, java.lang.String statusText)
HttpStatus and status text.statusCode - the status codestatusText - the status textprotected HttpStatusCodeException(HttpStatus statusCode, java.lang.String statusText, @Nullable byte[] responseBody, @Nullable java.nio.charset.Charset responseCharset)
HttpStatus, status text, and 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, @Nullable HttpHeaders responseHeaders, @Nullable byte[] responseBody, @Nullable java.nio.charset.Charset responseCharset)
HttpStatus, status text, content, and
 a response charset.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()