Searched defs:theReason (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/sql/
H A DSQLWarning.java42 * @param theReason
45 public SQLWarning(String theReason) { argument
46 super(theReason);
54 * @param theReason
59 public SQLWarning(String theReason, String theSQLState) { argument
60 super(theReason, theSQLState);
69 * @param theReason
76 public SQLWarning(String theReason, String theSQLState, int theErrorCode) { argument
77 super(theReason, theSQLState, theErrorCode);
H A DSQLException.java63 * @param theReason
66 public SQLException(String theReason) { argument
67 this(theReason, null, 0);
75 * @param theReason
80 public SQLException(String theReason, String theSQLState) { argument
81 this(theReason, theSQLState, 0);
90 * @param theReason
97 public SQLException(String theReason, String theSQLState, int theErrorCode) { argument
98 super(theReason);
122 * @param theReason
130 SQLException(String theReason, Throwable theCause) argument
149 SQLException(String theReason, String theSQLState, Throwable theCause) argument
171 SQLException(String theReason, String theSQLState, int theErrorCode, Throwable theCause) argument
[all...]

Completed in 1057 milliseconds