il.co.iter.dbdom
Class DBDOMException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--il.co.iter.dbdom.DBDOMException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
DBDOMSpException, DBDOMSqlException

public class DBDOMException
extends java.lang.RuntimeException

DOMException is a generic exception thrown by DBDOM objects

See Also:
Serialized Form

Field Summary
protected  java.lang.Exception rootException
           
 
Constructor Summary
DBDOMException()
          Constructs a DBDOMException with no specified detailed message.
DBDOMException(java.lang.String message)
          Constructs a DBDOMException with a specified detailed message.
 
Method Summary
 void printStackTrace()
          Prints the stack backtrace of this exception, and the one that caused it to be thrown, if any, to System.err.
 void printStackTrace(java.io.PrintStream s)
          Prints the stack backtrace of this exception, and the one that caused it to be thrown, if any, to the specified print stream.
 void printStackTrace(java.io.PrintWriter s)
          Prints the stack backtrace of this exception, and the one that caused it to be thrown, if any, to the specified print writer.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

rootException

protected java.lang.Exception rootException
Constructor Detail

DBDOMException

public DBDOMException()
Constructs a DBDOMException with no specified detailed message.

DBDOMException

public DBDOMException(java.lang.String message)
Constructs a DBDOMException with a specified detailed message.
Parameters:
message - the specified detailed message.
Method Detail

printStackTrace

public void printStackTrace()
Prints the stack backtrace of this exception, and the one that caused it to be thrown, if any, to System.err.
Overrides:
printStackTrace in class java.lang.Throwable

printStackTrace

public void printStackTrace(java.io.PrintStream s)
Prints the stack backtrace of this exception, and the one that caused it to be thrown, if any, to the specified print stream.
Overrides:
printStackTrace in class java.lang.Throwable
Parameters:
s - print stream to print to

printStackTrace

public void printStackTrace(java.io.PrintWriter s)
Prints the stack backtrace of this exception, and the one that caused it to be thrown, if any, to the specified print writer.
Overrides:
printStackTrace in class java.lang.Throwable
Parameters:
s - print writer to print to