Class RoutingWorkItemOperationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.novomind.ecom.api.iagent.exception.ExternalRoutingException
com.novomind.ecom.api.iagent.exception.RoutingWorkItemOperationException
- All Implemented Interfaces:
Serializable
Signals that an exception has occurred during an operation on a
RoutingWorkItem.- Since:
- 11.29
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionRoutingWorkItemOperationException(String itemId, String message) Constructs a newRoutingWorkItemOperationExceptionwith the specified item id and detail message.RoutingWorkItemOperationException(String itemId, String message, Throwable cause) Constructs a newRoutingWorkItemOperationExceptionwith the specified item id, detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Field Details
-
itemId
the id of theRoutingWorkItem
-
-
Constructor Details
-
RoutingWorkItemOperationException
Constructs a newRoutingWorkItemOperationExceptionwith the specified item id and detail message.- Parameters:
itemId- the id of theRoutingWorkItem(which is saved for later retrieval by thegetItemId()method)message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method)- Since:
- 11.29
-
RoutingWorkItemOperationException
Constructs a newRoutingWorkItemOperationExceptionwith the specified item id, detail message and cause.- Parameters:
itemId- the id of theRoutingWorkItem(which is saved for later retrieval by thegetItemId()method)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). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 11.29
-
-
Method Details