2004.04.29


com.jdc.rdb.sql
Class SQLException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.sql.SQLException
                    |
                    +--com.jdc.rdb.sql.SQLException
All Implemented Interfaces:
Serializable

public class SQLException
extends SQLException
implements Serializable

SQLException represents a Structured Query Language (SQL) exception. This exception is thrown by SQL statement classes when unable to complete an SQL operation.

Version:
2.0
Author:
Jay Damon
See Also:
SQL, Serialized Form

Constructor Summary
SQLException(Object object, String method, String message, Exception exception)
          Constructs a new SQLException object for the specified Object, method name, message, and original Exception.
 
Methods inherited from class java.sql.SQLException
getErrorCode, getNextException, getSQLState, setNextException
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SQLException

public SQLException(Object object,
                    String method,
                    String message,
                    Exception exception)
Constructs a new SQLException object for the specified Object, method name, message, and original Exception. The parameters represent the Object instance and method name where the exception occurred, the specific exception message description, and the original Exception object.


2004.04.29



Copyright © 2004 J. Damon & Co.; All Rights Reserved WorldWide.