Class IntegrationExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.hybris.platform.integrationservices.util.timeout.IntegrationExecutionException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
OutboundRequestExecutionException
This exception is thrown when the
TimeoutService encounters an exception
other than the TimeoutException. It is a wrapper
around the actual cause. Use Throwable.getCause() to get the actual cause
of this exception.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionIntegrationExecutionException(String msg, Throwable cause) Instantiates an IntegrationExecutionException with a messageInstantiates an IntegrationExecutionException -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IntegrationExecutionException
Instantiates an IntegrationExecutionException- Parameters:
cause- The cause of the execution exception
-
IntegrationExecutionException
Instantiates an IntegrationExecutionException with a message- Parameters:
msg- The error messagecause- The cause of the execution exception
-