java.rmi.activation
public class ActivationException extends Exception
java.rmi.activation.
Since: 1.2
UNKNOWN: updated to 1.4
| Field Summary | |
|---|---|
| Throwable | detail 
 The cause of this exception.  | 
| Constructor Summary | |
|---|---|
| ActivationException() 
 Create an exception with no message, and cause initialized to null. | |
| ActivationException(String s) 
 Create an exception with the given message, and cause initialized to null.
 | |
| ActivationException(String s, Throwable ex) 
 Create an exception with the given message and cause.
 | |
| Method Summary | |
|---|---|
| Throwable | getCause() 
 Returns the cause of this exception.  | 
| String | getMessage() 
 This method returns a message indicating what went wrong, in this
 format:
  super.getMessage() + (detail == null ?  | 
Serial: the exception cause
Parameters: s the message
Parameters: s the message ex the cause
detail field being public
 and non-final (yuck). However, to avoid violating the contract of
 Throwable.getCause(), this returns null if detail == this,
 as no exception can be its own cause.
Returns: the cause
Since: 1.4
super.getMessage() + (detail == null ? ""
    : "; nested exception is:\n\t" + detail).
Returns: the chained message