Class AgentRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
madkit.kernel.AgentRuntimeException
- All Implemented Interfaces:
Serializable
This Exception is thrown when an agent runtime error occurs. It is thrown by agents
when they encounter an error that prevents them from executing.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAgentRuntimeException
(String message) Constructs anAgentRuntimeException
with the specified detail message.AgentRuntimeException
(String message, Throwable cause) Constructs anAgentRuntimeException
with the specified 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, toString
-
Constructor Details
-
AgentRuntimeException
Constructs anAgentRuntimeException
with the specified detail message.- Parameters:
message
- the detail message
-
AgentRuntimeException
Constructs anAgentRuntimeException
with the specified detail message and cause.- Parameters:
message
- the detailcause
- the cause
-