| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.security.PrivilegedActionException
PrivilegedActionException | public class PrivilegedActionException extends Exception (Code) | | Instances of this class are used to wrap exceptions which occur within
privileged operations.
|
Method Summary | |
public Throwable | getCause() Answers the cause of this Throwable, or null if there is no cause. | public Exception | getException() Answers the exception which caused the receiver to be thrown. | public String | toString() Answers a string containing a concise, human-readable description of the
receiver. |
PrivilegedActionException | public PrivilegedActionException(Exception ex)(Code) | | Constructs a new instance of this class with its exception filled in.
Parameters: ex - |
getCause | public Throwable getCause()(Code) | | Answers the cause of this Throwable, or null if there is no cause.
Throwable The receiver's cause. |
getException | public Exception getException()(Code) | | Answers the exception which caused the receiver to be thrown.
exception |
toString | public String toString()(Code) | | Answers a string containing a concise, human-readable description of the
receiver.
String a printable representation for the receiver. |
|
|
|