Methods Summary |
---|
public void | __printStackTrace(java.io.PrintWriter pw)Every exception hierarchy implementing this interface must ensure that
this method delegates to super.printStackTrace(pw) where 'super' is the
first superclass not implementing IThrowableWrapper. This is used by
{@link ExceptionCommon} to avoid infinite
recursion and is not meant to be called by other classes.
|
public void | __printStackTrace(java.io.PrintStream ps)Every exception hierarchy implementing this interface must ensure that
this method delegates to super.printStackTrace(ps) where 'super' is the
first superclass not implementing IThrowableWrapper. This is used by
{@link ExceptionCommon} to avoid infinite
recursion and is not meant to be called by other classes.
|
public java.lang.Throwable | getCause()Gets the Throwable being wrapped. This method signature is the same as
Throwable.getCause() in J2SE 1.4.
|