public class ActivationException extends Exception
java.rmi.activation.| Modifier and Type | Field and Description |
|---|---|
Throwable |
detail
The cause of this exception.
|
| Constructor and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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 ? |
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ActivationException()
public ActivationException(String s)
s - the messagepublic ActivationException(String s, Throwable ex)
s - the messageex - the causepublic String getMessage()
super.getMessage() + (detail == null ? ""
: "; nested exception is:\n\t" + detail).getMessage in class Throwablepublic Throwable getCause()
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.