litebase
Class DriverException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by litebase.DriverException
All Implemented Interfaces:
java.io.Serializable

public class DriverException
extends java.lang.RuntimeException

This exception may be dispatched if any problem, other than a SQL parsing error, occurs. It is an unchecked Exception (it can be thrown any time).

See Also:
Serialized Form

Field Summary
 java.lang.Exception cause
          The exception that caused this exception to be dispatched, or null if the cause of this exception was not another exception.
 
Method Summary
 void printStackTrace()
          Prints this stack trace and also the trace of the cause, if any was set.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

cause

public java.lang.Exception cause
The exception that caused this exception to be dispatched, or null if the cause of this exception was not another exception.

Method Detail

printStackTrace

public void printStackTrace()
Prints this stack trace and also the trace of the cause, if any was set.

Overrides:
printStackTrace in class java.lang.Throwable