Class ExternalRoutingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.novomind.ecom.api.iagent.exception.ExternalRoutingException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ExternalRoutingRequestException
,RoutingWorkItemNotFoundException
,RoutingWorkItemOperationException
public class ExternalRoutingException extends java.lang.Exception
Signals that an exception has occurred in connection with anExternalRoutingConnector
.- Since:
- 11.29
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExternalRoutingException()
ExternalRoutingException(java.lang.String message)
ExternalRoutingException(java.lang.String message, java.lang.Throwable cause)
-
-
-
Constructor Detail
-
ExternalRoutingException
public ExternalRoutingException()
- Since:
- 11.29
-
ExternalRoutingException
public ExternalRoutingException(java.lang.String message)
- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).- Since:
- 11.29
-
ExternalRoutingException
public ExternalRoutingException(java.lang.String message, java.lang.Throwable cause)
- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 11.29
-
-