public class HttpClientErrorException extends HttpStatusCodeException
DefaultResponseErrorHandler, 
Serialized Form| Constructor and Description | 
|---|
| HttpClientErrorException(HttpStatus statusCode)Construct a new instance of  HttpClientErrorExceptionbased on
 anHttpStatus. | 
| HttpClientErrorException(HttpStatus statusCode,
                        String statusText)Construct a new instance of  HttpClientErrorExceptionbased on
 anHttpStatusand status text. | 
| HttpClientErrorException(HttpStatus statusCode,
                        String statusText,
                        byte[] responseBody,
                        Charset responseCharset)Construct a new instance of  HttpClientErrorExceptionbased on
 anHttpStatus, status text, and response body content. | 
| HttpClientErrorException(HttpStatus statusCode,
                        String statusText,
                        HttpHeaders responseHeaders,
                        byte[] responseBody,
                        Charset responseCharset)Construct a new instance of  HttpClientErrorExceptionbased on
 anHttpStatus, status text, and response body content. | 
getStatusCodegetRawStatusCode, getResponseBodyAsByteArray, getResponseBodyAsString, getResponseHeaders, getStatusTextcontains, getMessage, getMostSpecificCause, getRootCauseaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic HttpClientErrorException(HttpStatus statusCode)
HttpClientErrorException based on
 an HttpStatus.statusCode - the status codepublic HttpClientErrorException(HttpStatus statusCode, String statusText)
HttpClientErrorException based on
 an HttpStatus and status text.statusCode - the status codestatusText - the status textpublic HttpClientErrorException(HttpStatus statusCode, String statusText, byte[] responseBody, Charset responseCharset)
HttpClientErrorException based on
 an HttpStatus, status text, and response body content.statusCode - the status codestatusText - the status textresponseBody - the response body content (may be null)responseCharset - the response body charset (may be null)public HttpClientErrorException(HttpStatus statusCode, String statusText, HttpHeaders responseHeaders, byte[] responseBody, Charset responseCharset)
HttpClientErrorException based on
 an HttpStatus, status text, and response body content.statusCode - the status codestatusText - the status textresponseHeaders - the response headers (may be null)responseBody - the response body content (may be null)responseCharset - the response body charset (may be null)