java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.inverno.mod.http.client.HttpClientException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConnectionResetException,ConnectionTimeoutException,EndpointConnectException,HttpClientUpgradeException,RequestTimeoutException,ResetStreamException
Base exception class used to report HTTP client errors.
- Since:
- 1.6
- Author:
- Jeremy Kuhn
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an HTTP client exception.HttpClientException(String message) Creates an HTTP client exception.HttpClientException(String message, Throwable cause) Creates an HTTP client exception.HttpClientException(Throwable cause) Creates an HTTP client exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
HttpClientException
public HttpClientException()Creates an HTTP client exception.
-
HttpClientException
Creates an HTTP client exception.
- Parameters:
message- the message
-
HttpClientException
Creates an HTTP client exception.
- Parameters:
message- the messagecause- the cause
-
HttpClientException
Creates an HTTP client exception.
- Parameters:
cause- the cause
-