Searched refs:theSQLState (Results 1 - 2 of 2) sorted by relevance

/dalvik/libcore/sql/src/main/java/java/sql/
H A DSQLException.java85 * @param theSQLState
89 public SQLException(String theReason, String theSQLState) { argument
90 this(theReason, theSQLState, 0);
101 * @param theSQLState
107 public SQLException(String theReason, String theSQLState, int theErrorCode) { argument
109 SQLState = theSQLState;
H A DSQLWarning.java64 * @param theSQLState
67 public SQLWarning(String theReason, String theSQLState) { argument
68 super(theReason, theSQLState);
79 * @param theSQLState
85 public SQLWarning(String theReason, String theSQLState, int theErrorCode) { argument
86 super(theReason, theSQLState, theErrorCode);

Completed in 72 milliseconds