| java.lang.Object java.lang.Throwable java.lang.Exception org.webdocwf.util.loader.LoaderException
LoaderException | public class LoaderException extends Exception (Code) | | LoaderException class is used for handling the exceptions in
Enhydra Octopus application.
author: Milosevic Sinisa version: 1.0 |
Method Summary | |
public Throwable | getCause() Gets the exception associated with this exception. | public String | getMessage() | public String | getStackTraceAsString() Construct string with stack trace. | 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 LoaderException and its backtrace, and the causes
and their stack traces to the e specified print stream. | public void | printStackTrace(PrintWriter s) Prints this LoaderException and its backtrace, and the causes
and their stack traces to the specified print writer. |
LoaderException | public LoaderException(String msg)(Code) | | This is the public constructor with one parameter
Parameters: msg - is constructor argument |
LoaderException | public LoaderException(String msg, Throwable cause)(Code) | | This is the public constructor with two parameter
Parameters: msg - is first constructor parameter Parameters: cause - is secund constructor parameter |
getCause | public Throwable getCause()(Code) | | Gets the exception associated with this exception.
The exception or null if no cause is specified. |
getMessage | public String getMessage()(Code) | | This method read message from exception object
message |
getStackTraceAsString | public String getStackTraceAsString()(Code) | | Construct string with stack trace.
String representation of stack trace. |
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 LoaderException and its backtrace, and the causes
and their stack traces to the e specified print stream.
Parameters: s - represents PrintWriter stream |
printStackTrace | public void printStackTrace(PrintWriter s)(Code) | | Prints this LoaderException and its backtrace, and the causes
and their stack traces to the specified print writer.
Parameters: s - represents PrintWriter stream |
|
|