forked from apache/commons-dbutils
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
1121337
commit c490e81
Showing
2 changed files
with
29 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/main/java/org/apache/commons/dbutils/constants/SQLExceptionCostants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package org.apache.commons.dbutils.constants; | ||
|
||
public class SQLExceptionCostants { | ||
public static final String NULL_CONNECTION_ERROR = "Null connection error"; | ||
public static final String NULL_PARAMS_ERROR = "Null parameters error"; | ||
public static final String NULL_STATEMENT_ERROR = "Null SQL statement"; | ||
public static final String NULL_RESULT_SET_ERROR = "Null result set error"; | ||
} |