Interface AgentState.ErrorDescriptor
- All Known Implementing Classes:
AgentConfigManager.ErrorDescriptor
- Enclosing interface:
AgentState
public static interface AgentState.ErrorDescriptor
The
AgentState.ErrorDescriptor provides detailed information about the agent state change problem.- Since:
- 3.0
- Version:
- 3.0.2
- Author:
- Frank Fock
-
Method Summary
Modifier and TypeMethodDescriptionGets the error description.The exception that occurred.intThe source state (before the error).intThe target state (goal without error).
-
Method Details
-
getDescription
-
getSourceState
int getSourceState()The source state (before the error).- Returns:
- a integer value between
AgentState.STATE_CREATEDandAgentState.STATE_SAVED.
-
getTargetState
int getTargetState()The target state (goal without error).- Returns:
- a integer value between
AgentState.STATE_CREATEDandAgentState.STATE_SAVED.
-
getException
-