ActivateFailedExceptionpublic class ActivateFailedException extends RemoteException This exception is thrown by the RMI runtime when activation
fails during a remote call to an activatable object. |
Fields Summary |
---|
private static final long | serialVersionUIDindicate compatibility with the Java 2 SDK v1.2 version of class |
Constructors Summary |
---|
public ActivateFailedException(String s)Constructs an ActivateFailedException with the specified
detail message.
super(s);
| public ActivateFailedException(String s, Exception ex)Constructs an ActivateFailedException with the specified
detail message and nested exception.
super(s, ex);
|
|