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:
java.io.Serializable
public class RoutingWorkItemOperationException extends ExternalRoutingException
Signals that an exception has occurred during an operation on aRoutingWorkItem
.- Since:
- 11.29
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
itemId
-
Constructor Summary
Constructors Constructor Description RoutingWorkItemOperationException(java.lang.String itemId, java.lang.String message)
RoutingWorkItemOperationException(java.lang.String itemId, java.lang.String message, java.lang.Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getItemId()
java.lang.String
toString()
-
-
-
Constructor Detail
-
RoutingWorkItemOperationException
public RoutingWorkItemOperationException(java.lang.String itemId, java.lang.String 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
public RoutingWorkItemOperationException(java.lang.String itemId, java.lang.String message, java.lang.Throwable 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). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 11.29
-
-