Class HttpClientException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.micronaut.http.exceptions.HttpException
-
- io.micronaut.http.client.exceptions.HttpClientException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ContentLengthExceededException,EmptyResponseException,HttpClientResponseException,NoHostException,ReadTimeoutException
public class HttpClientException extends io.micronaut.http.exceptions.HttpExceptionParent class for all HTTP client exceptions.- Since:
- 1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HttpClientException(java.lang.String message)HttpClientException(java.lang.String message, java.lang.Throwable cause)HttpClientException(java.lang.String message, java.lang.Throwable cause, boolean shared)
-
-
-
Constructor Detail
-
HttpClientException
public HttpClientException(java.lang.String message)
- Parameters:
message- The message
-
HttpClientException
public HttpClientException(java.lang.String message, java.lang.Throwable cause)- Parameters:
message- The messagecause- The throwable
-
HttpClientException
public HttpClientException(java.lang.String message, java.lang.Throwable cause, boolean shared)- Parameters:
message- The messagecause- The throwableshared- Shared instance
-
-