Public Member Functions | |
ExceptionWrapper (Exception wrapped) | |
ExceptionWrapper (Exception wrapped, String message) | |
Constructs a new ExceptionWrapper with the specified error message and wrapped object. | |
Exception | getWrappedException () |
String | getMessage () |
Returns the error message string of this throwable object. | |
String | getLocalizedMessage () |
Creates a localized description of this Throwable . | |
String | toString () |
Returns a short description of this throwable object. | |
void | printStackTrace () |
Prints this Throwable and its backtrace to the standard error stream. | |
void | printStackTrace (java.io.PrintStream s) |
Prints this Throwable and its backtrace to the specified print stream. | |
void | printStackTrace (java.io.PrintWriter s) |
Prints this Throwable and its backtrace to the specified print writer. | |
Private Attributes | |
Exception | _wrappedException |
Definition at line 65 of file ExceptionWrapper.java.
|
Definition at line 67 of file ExceptionWrapper.java. References com.arcle.rmt.j2se.util.ExceptionWrapper._wrappedException. |
|
Constructs a new
Definition at line 79 of file ExceptionWrapper.java. References com.arcle.rmt.j2se.util.ExceptionWrapper._wrappedException. |
|
Creates a localized description of this
Subclasses may override this method in order to produce a locale-specific message. For subclasses that do not override this method, the default implementation returns the same result as
Definition at line 112 of file ExceptionWrapper.java. References com.arcle.rmt.j2se.util.ExceptionWrapper.getWrappedException(). |
|
Returns the error message string of this throwable object.
Definition at line 98 of file ExceptionWrapper.java. References com.arcle.rmt.j2se.util.ExceptionWrapper.getWrappedException(). |
|
Definition at line 84 of file ExceptionWrapper.java. References com.arcle.rmt.j2se.util.ExceptionWrapper._wrappedException. Referenced by com.arcle.rmt.j2se.util.ExceptionWrapper.getLocalizedMessage(), com.arcle.rmt.j2se.util.ExceptionWrapper.getMessage(), and com.arcle.rmt.j2se.util.ExceptionWrapper.printStackTrace(). |
|
Prints this
Definition at line 202 of file ExceptionWrapper.java. References com.arcle.rmt.j2se.util.ExceptionWrapper.getWrappedException(). |
|
Prints this
Definition at line 187 of file ExceptionWrapper.java. References com.arcle.rmt.j2se.util.ExceptionWrapper.getWrappedException(). |
|
Prints this
This method prints a stack trace for this
Definition at line 173 of file ExceptionWrapper.java. References com.arcle.rmt.j2se.util.ExceptionWrapper.getWrappedException(). |
|
Returns a short description of this throwable object.
If this
Throwable object was created with no error message string, then the name of the actual class of this object is returned.
Definition at line 132 of file ExceptionWrapper.java. |
|
Definition at line 210 of file ExceptionWrapper.java. Referenced by com.arcle.rmt.j2se.util.ExceptionWrapper.ExceptionWrapper(), and com.arcle.rmt.j2se.util.ExceptionWrapper.getWrappedException(). |