Methods Summary |
---|
public java.lang.Throwable | getCause()Returns the exception that was thrown by a
{@code PrivilegedExceptionAction}.
return exception;
|
public java.lang.Exception | getException()Returns the exception that was thrown by a
{@code PrivilegedExceptionAction}.
return exception; // return ( getCause() instanceof Exception ) ?
// getCause() : null;
|
public java.lang.String | toString()Returns a string containing a concise, human-readable description of this
{@code PrivilegedActionException}.
String s = getClass().getName();
return exception == null ? s : s + ": " + exception; //$NON-NLS-1$
|