| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception org.jibx.runtime.JiBXException
All known Subclasses: org.jibx.runtime.RecoverableException, org.jibx.runtime.UnrecoverableException,
JiBXException | public class JiBXException extends Exception (Code) | | Binding exception class. This is used for all types of errors that
can be generated by the runtime.
author: Dennis M. Sosnoski version: 1.0 |
JiBXException | public JiBXException(String msg)(Code) | | Constructor from message.
Parameters: msg - message describing the exception condition |
JiBXException | public JiBXException(String msg, Throwable root)(Code) | | Constructor from message and wrapped exception.
Parameters: msg - message describing the exception condition Parameters: root - exception which caused this exception |
getRootCause | public Throwable getRootCause()(Code) | | Get root cause exception.
exception that caused this exception |
printStackTrace | public void printStackTrace()(Code) | | Print stack trace to standard error. This is an override of the base
class method to implement exception chaining.
|
printStackTrace | public void printStackTrace(PrintStream s)(Code) | | Print stack trace to stream. This is an override of the base class method
to implement exception chaining.
Parameters: s - stream for printing stack trace |
printStackTrace | public void printStackTrace(PrintWriter s)(Code) | | Print stack trace to writer. This is an override of the base class method
to implement exception chaining.
Parameters: s - writer for printing stack trace |
|
|
|