Package jade.wrapper
Class StaleProxyException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- jade.wrapper.ControllerException
-
- jade.wrapper.StaleProxyException
-
- All Implemented Interfaces:
Serializable
public class StaleProxyException extends ControllerException
This exception class is thrown when an attempt to use a stale (i.e. outdated) wrapper object is made.
NOT available in MIDP- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StaleProxyException()Creates a new exception object, with a default detail message.StaleProxyException(String message)Creates a new exception object, with a given detail message.StaleProxyException(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
-
StaleProxyException
public StaleProxyException()
Creates a new exception object, with a default detail message.
-
StaleProxyException
public StaleProxyException(String message)
Creates a new exception object, with a given detail message.- Parameters:
message- The detail message for the new exception object.
-
StaleProxyException
public StaleProxyException(Throwable aThrowable)
Creates a new exception object, extracting message from another throwable.- Parameters:
aThrowable- The original exception or error.
-
-