Class IntegrationExecutionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.hybris.platform.integrationservices.util.timeout.IntegrationExecutionException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
OutboundRequestExecutionException
public class IntegrationExecutionException extends java.lang.RuntimeExceptionThis exception is thrown when theTimeoutServiceencounters an exception other than theTimeoutException. It is a wrapper around the actual cause. UseThrowable.getCause()to get the actual cause of this exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IntegrationExecutionException(java.lang.String msg, java.lang.Throwable cause)Instantiates an IntegrationExecutionException with a messageIntegrationExecutionException(java.lang.Throwable cause)Instantiates an IntegrationExecutionException
-
-
-
Constructor Detail
-
IntegrationExecutionException
public IntegrationExecutionException(java.lang.Throwable cause)
Instantiates an IntegrationExecutionException- Parameters:
cause- The cause of the execution exception
-
IntegrationExecutionException
public IntegrationExecutionException(java.lang.String msg, java.lang.Throwable cause)Instantiates an IntegrationExecutionException with a message- Parameters:
msg- The error messagecause- The cause of the execution exception
-
-