Package org.jboss.jca.adapters.jdbc.spi
Interface ExceptionSorter
-
- All Known Implementing Classes:
AlwaysExceptionSorter,DB2ExceptionSorter,InformixExceptionSorter,ListExceptionSorter,MSSQLExceptionSorter,MySQLExceptionSorter,NullExceptionSorter,OracleExceptionSorter,PostgreSQLExceptionSorter,SybaseExceptionSorter
public interface ExceptionSorterThe ExceptionSorter interface allows forjava.sql.SQLExceptionevaluation to determine if an error is fatal.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisExceptionFatal(SQLException e)Evaluates ajava.sql.SQLExceptionto determine if the error was fatal
-
-
-
Method Detail
-
isExceptionFatal
boolean isExceptionFatal(SQLException e)
Evaluates ajava.sql.SQLExceptionto determine if the error was fatal- Parameters:
e- thejava.sql.SQLException- Returns:
- whether or not the exception is vatal.
-
-