public interface ErrorSet
| Modifier and Type | Field and Description |
|---|---|
static ErrorSet |
ALL_ERRORS
The set which contains all errors
|
static ErrorSet |
NO_ERRORS
The set which contains no errors
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
contains(java.sql.SQLException sqlException)
Returns
true if this set contains the error identified by the
specified sqlException. |
static final ErrorSet ALL_ERRORS
static final ErrorSet NO_ERRORS
boolean contains(java.sql.SQLException sqlException)
true if this set contains the error identified by the
specified sqlException.sqlException - A SQL exception which identifies an error. Not null.java.lang.NullPointerException - if the sqlException is null.