Class RoutingWorkItemNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.novomind.ecom.api.iagent.exception.ExternalRoutingException
-
- com.novomind.ecom.api.iagent.exception.RoutingWorkItemNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class RoutingWorkItemNotFoundException extends ExternalRoutingException
Signals that a specifiedRoutingWorkItem
does not exist or could not be found.- 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 RoutingWorkItemNotFoundException(java.lang.String itemId)
RoutingWorkItemNotFoundException(java.lang.String itemId, java.lang.String message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getItemId()
java.lang.String
toString()
-
-
-
Constructor Detail
-
RoutingWorkItemNotFoundException
public RoutingWorkItemNotFoundException(java.lang.String itemId)
- Parameters:
itemId
- the id of theRoutingWorkItem
(which is saved for later retrieval by thegetItemId()
method)- Since:
- 11.29
-
RoutingWorkItemNotFoundException
public RoutingWorkItemNotFoundException(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
-
-