| com.lutris.util.ChainedThrowable
All known Subclasses: com.lutris.util.ChainedError, com.lutris.util.ChainedException, com.lutris.util.ChainedRuntimeException,
ChainedThrowable | public interface ChainedThrowable (Code) | | Interfaces for all of the Chained* throwables. This defines
the common methods that all implement.
|
Method Summary | |
public Throwable | getCause() Get the causing exception associated with this exception. | public String | getMessage() Return the message associated with this exception. | public void | printStackTrace() Prints this ChainedException and its backtrace, and the causes
and their stack traces to the standard error stream. | public void | printStackTrace(PrintStream s) Prints this ChainedException and its backtrace, and the causes
and their stack traces to the e specified print stream. | public void | printStackTrace(PrintWriter s) Prints this ChainedException and its backtrace, and the causes
and their stack traces to the e specified print writer. |
getCause | public Throwable getCause()(Code) | | Get the causing exception associated with this exception.
The causing exception or null if no cause is specified. |
getMessage | public String getMessage()(Code) | | Return the message associated with this exception. If causes
are included, they will be appended to the message.
|
printStackTrace | public void printStackTrace()(Code) | | Prints this ChainedException and its backtrace, and the causes
and their stack traces to the standard error stream.
|
printStackTrace | public void printStackTrace(PrintStream s)(Code) | | Prints this ChainedException and its backtrace, and the causes
and their stack traces to the e specified print stream.
|
printStackTrace | public void printStackTrace(PrintWriter s)(Code) | | Prints this ChainedException and its backtrace, and the causes
and their stack traces to the e specified print writer.
|
|
|