Definition of Sqlexception

JDK Doc(JAVA)
SQLException
- exception java.sql..SQLException 
public class SQLException extends Exception 
Tree:java.lang.Object - java.lang.Throwable - java.lang.Exception - java.sql.SQLException


SQLException()
- Constructor for class java.sql.SQLException 
public SQLException ()
Constructs an SQLException object; reason defaults to null, SQLState defaults to null, and vendorCode defaults to 0.

SQLException(String)
- Constructor for class java.sql.SQLException 
public SQLException (String  reason)
Constructs an SQLException object with a reason; SQLState defaults to null, and vendorCode defaults to 0.Parameters: reason - a description of the exception

SQLException(String, String)
- Constructor for class java.sql.SQLException 
public SQLException (String  reason, String  SQLState)
Constructs an SQLException object with a reason and SQLState; vendorCode defaults to 0.Parameters: reason - a description of the exception - an XOPEN code identifying the exceptionSQLState - an XOPEN code identifying the exception

SQLException(String, String, int)
- Constructor for class java.sql.SQLException 
public SQLException (String  reason, String  SQLState, int vendorCode)
Constructs a fully-specified SQLException object.Parameters: reason - a description of the exception - an XOPEN code identifying the exceptionSQLState - an XOPEN code identifying the exception - a database vendor-specific exception codevendorCode - a database vendor-specific exception code

Search Dictionary:
Search Web Search Dictionary