public class HttpClientErrorException extends HttpStatusCodeException
DefaultResponseErrorHandler,
Serialized Form| Constructor and Description |
|---|
HttpClientErrorException(HttpStatus statusCode)
Construct a new instance of
HttpClientErrorException based on a HttpStatus. |
HttpClientErrorException(HttpStatus statusCode,
java.lang.String statusText)
Construct a new instance of
HttpClientErrorException based on a HttpStatus and status text. |
HttpClientErrorException(HttpStatus statusCode,
java.lang.String statusText,
byte[] responseBody,
java.nio.charset.Charset responseCharset)
Construct a new instance of
HttpClientErrorException based on a HttpStatus, status text, and
response body content. |
getResponseBodyAsByteArray, getResponseBodyAsString, getStatusCode, getStatusTextcontains, getMessage, getMostSpecificCause, getRootCausepublic HttpClientErrorException(HttpStatus statusCode)
HttpClientErrorException based on a HttpStatus.statusCode - the status codepublic HttpClientErrorException(HttpStatus statusCode, java.lang.String statusText)
HttpClientErrorException based on a HttpStatus and status text.statusCode - the status codestatusText - the status textpublic HttpClientErrorException(HttpStatus statusCode, java.lang.String statusText, byte[] responseBody, java.nio.charset.Charset responseCharset)
HttpClientErrorException based on a 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 null