Home

xl2.odb
Class XL2Exception

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--xl2.util.NestedException
                          |
                          +--xl2.odb.XL2Exception
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
DatabaseLockedException, DatabaseNotOpenException, InvalidObjectException, LockNotGrantedException

public class XL2Exception
extends NestedException

Base exception for this package. Allows applications to easily trap most XL2 exceptions (excludes xl2.transaction exceptions).

See Also:
Serialized Form

Constructor Summary
XL2Exception()
           
XL2Exception(java.lang.Exception nested)
           
XL2Exception(java.lang.String message)
           
 
Methods inherited from class xl2.util.NestedException
getException, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

XL2Exception

public XL2Exception()

XL2Exception

public XL2Exception(java.lang.String message)

XL2Exception

public XL2Exception(java.lang.Exception nested)

Home