Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 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);
}