Package jade.wrapper
Class ControllerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- jade.wrapper.ControllerException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
StaleProxyException
public class ControllerException extends Exception
This exception class is thrown when an operation fails on any of the agent controller methods.
NOT available in MIDP- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ControllerException()Creates a new exception object, with a default detail message.ControllerException(String message)Creates a new exception object, with a given detail message.ControllerException(Throwable aThrowable)Creates a new exception object, extracting message from another throwable.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ControllerException
public ControllerException()
Creates a new exception object, with a default detail message.
-
ControllerException
public ControllerException(String message)
Creates a new exception object, with a given detail message.- Parameters:
message- The detail message for the new exception object.
-
ControllerException
public ControllerException(Throwable aThrowable)
Creates a new exception object, extracting message from another throwable.- Parameters:
aThrowable- The original exception or error.
-
-