Package com.azure.core.exception
Class ServiceResponseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.azure.core.exception.AzureException
com.azure.core.exception.ServiceResponseException
- All Implemented Interfaces:
Serializable
The ServiceResponseException represents an exception thrown when the client fails to understand the
service response or the connection times out.
This exception is typically thrown in the following scenarios:
- The request was sent, but the client failed to understand the response. This could be due to the response not being in the expected format, or only a partial response was received.
- The connection may have timed out. These errors can be retried for idempotent or safe operations.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionServiceResponseException(String message) Initializes a new instance of the ServiceResponseException class.ServiceResponseException(String message, Throwable cause) Initializes a new instance of the ServiceResponseException class. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ServiceResponseException
Initializes a new instance of the ServiceResponseException class.- Parameters:
message- the exception message or the response content if a message is not available
-
ServiceResponseException
Initializes a new instance of the ServiceResponseException class.- Parameters:
message- the exception message.cause- the Throwable which caused the creation of this ServiceResponseException.
-