Package jadex.bdi.runtime
Class BDIFailureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jadex.bdi.runtime.BDIFailureException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
GoalFailureException
,PlanFailureException
A BDI failure exception indicates that a plan has failed.
Note: This exception will not be logged by the logger
as it occurs in plans (normal plain failure).
Subclasses of this exception are used to refine the failure reason.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionBDIFailureException
(String message, Throwable cause) Create a new BDI failure exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BDIFailureException
Create a new BDI failure exception.- Parameters:
message
- The message.cause
- The parent exception (if any).
-