| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception org.ofbiz.base.start.StartupException
StartupException | public class StartupException extends Exception (Code) | | StartupException
author: Andy Zeneski version: $Revision: 1.1 $ since: 2.2 |
Method Summary | |
public String | getMessage() Returns the detail message, including the message from the nested exception if there is one. | public Throwable | getNested() Returns the nested exception if there is one, null if there is not. | public String | getNonNestedMessage() Returns the detail message, NOT including the message from the nested exception. | public void | printStackTrace() Prints the composite message to System.err. | public void | printStackTrace(PrintStream ps) Prints the composite message and the embedded stack trace to the specified stream ps. | public void | printStackTrace(PrintWriter pw) Prints the composite message and the embedded stack trace to the specified print writer pw. |
StartupException | public StartupException()(Code) | | Creates new StartupException without detail message.
|
StartupException | public StartupException(String msg)(Code) | | Constructs an StartupException with the specified detail message.
Parameters: msg - the detail message. |
StartupException | public StartupException(String msg, Throwable nested)(Code) | | Constructs an StartupException with the specified detail message and nested Exception.
Parameters: msg - the detail message. |
StartupException | public StartupException(Throwable nested)(Code) | | Constructs an StartupException with the specified detail message and nested Exception.
Parameters: msg - the detail message. |
getMessage | public String getMessage()(Code) | | Returns the detail message, including the message from the nested exception if there is one.
|
getNested | public Throwable getNested()(Code) | | Returns the nested exception if there is one, null if there is not.
|
getNonNestedMessage | public String getNonNestedMessage()(Code) | | Returns the detail message, NOT including the message from the nested exception.
|
printStackTrace | public void printStackTrace()(Code) | | Prints the composite message to System.err.
|
printStackTrace | public void printStackTrace(PrintStream ps)(Code) | | Prints the composite message and the embedded stack trace to the specified stream ps.
|
printStackTrace | public void printStackTrace(PrintWriter pw)(Code) | | Prints the composite message and the embedded stack trace to the specified print writer pw.
|
|
|
|