HomeSort by relevance Sort by last modified time
    Searched defs:SQLException (Results 1 - 8 of 8) sorted by null

  /frameworks/base/core/java/android/database/
SQLException.java 22 public class SQLException extends RuntimeException
24 public SQLException() {}
26 public SQLException(String error)
  /cts/tests/tests/database/src/android/database/cts/
SQLExceptionTest.java 19 import android.database.SQLException;
26 @TestTargetClass(android.database.SQLException.class)
32 notes = "Test constructors of SQLException.",
33 method = "SQLException",
38 notes = "Test constructors of SQLException.",
39 method = "SQLException",
46 // Test SQLException()
48 throw new SQLException();
49 } catch (SQLException e) {
53 // Test SQLException(String
    [all...]
  /libcore/luni/src/main/java/java/sql/
SQLException.java 40 public class SQLException extends Exception implements Serializable, Iterable<Throwable> {
48 private SQLException next = null;
51 * Creates an {@code SQLException} object. The reason string is set to
55 public SQLException() {
60 * Creates an {@code SQLException} object. The reason string is set to the given
67 public SQLException(String theReason) {
72 * Creates an {@code SQLException} object. The reason string is set to the
81 public SQLException(String theReason, String theSQLState) {
86 * Creates an {@code SQLException} object. The reason string is set to the
98 public SQLException(String theReason, String theSQLState, int theErrorCode)
    [all...]