Class java.sql.SQLException (1.1)


public class SQLException extends Exception {
  // Public Constructors
    public SQLException(String reason, String SQLState, int vendorCode);
    public SQLException(String reason, String SQLState);
    public SQLException(String reason);
    public SQLException( );
  // Public Instance Methods
    public int getErrorCode( );
    public SQLException getNextException( );
    public String getSQLState( );
    public synchronized void setNextException(SQLException ex);
}