Class IntegrationTimeoutException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.hybris.platform.integrationservices.util.timeout.IntegrationTimeoutException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
OutboundRequestTimeoutException
public class IntegrationTimeoutException extends java.lang.RuntimeExceptionThis exception is thrown when a timeout occurs in theTimeoutService- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IntegrationTimeoutException(long timeout)Instantiates an IntegrationTimeoutExceptionIntegrationTimeoutException(java.lang.String msg, long timeout)Instantiates an IntegrationTimeoutException with a message
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetTimeout()Gets the timeout value
-
-
-
Constructor Detail
-
IntegrationTimeoutException
public IntegrationTimeoutException(long timeout)
Instantiates an IntegrationTimeoutException- Parameters:
timeout- The timeout value
-
IntegrationTimeoutException
public IntegrationTimeoutException(java.lang.String msg, long timeout)Instantiates an IntegrationTimeoutException with a message- Parameters:
msg- Exception messagetimeout- The timeout value
-
-