Package jadex.bdi.runtime
Class PlanFailureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jadex.bdi.runtime.BDIFailureException
jadex.bdi.runtime.PlanFailureException
- All Implemented Interfaces:
Serializable
An exception that may be thrown by a plan to
indicate its failure.
Note: This exception will not be logged by the logger
as it occurs in plans (normal plain failure).
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a new plan failure exception.PlanFailureException
(String message) Create a new plan failure exception.PlanFailureException
(String message, Throwable cause) Create a new plan 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
-
PlanFailureException
public PlanFailureException()Create a new plan failure exception. -
PlanFailureException
Create a new plan failure exception.- Parameters:
message
- The message.
-
PlanFailureException
Create a new plan failure exception.- Parameters:
message
- The message.cause
- The cause.
-