HomeSort by relevance Sort by last modified time
    Searched full:thereason (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/java/sql/
SQLException.java 63 * @param theReason
66 public SQLException(String theReason) {
67 this(theReason, null, 0);
75 * @param theReason
80 public SQLException(String theReason, String theSQLState) {
81 this(theReason, theSQLState, 0);
90 * @param theReason
97 public SQLException(String theReason, String theSQLState, int theErrorCode) {
98 super(theReason);
122 * @param theReason
    [all...]
SQLWarning.java 42 * @param theReason
45 public SQLWarning(String theReason) {
46 super(theReason);
54 * @param theReason
59 public SQLWarning(String theReason, String theSQLState) {
60 super(theReason, theSQLState);
69 * @param theReason
76 public SQLWarning(String theReason, String theSQLState, int theErrorCode) {
77 super(theReason, theSQLState, theErrorCode);

Completed in 558 milliseconds