| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException com.ibatis.common.jdbc.exception.RuntimeSQLException
RuntimeSQLException | public class RuntimeSQLException extends RuntimeException (Code) | | Unchecked exception to allow passing an Exception with the original SQLException
|
RuntimeSQLException | public RuntimeSQLException()(Code) | | Default constructor
|
RuntimeSQLException | public RuntimeSQLException(String msg)(Code) | | Constructor to pass along a message
See Also: com.ibatis.common.exception.RuntimeException Parameters: msg - - the message |
RuntimeSQLException | public RuntimeSQLException(SQLException sqlException)(Code) | | Constructor to pass along another exception
See Also: com.ibatis.common.exception.RuntimeException Parameters: sqlException - - the exception |
RuntimeSQLException | public RuntimeSQLException(String msg, SQLException sqlException)(Code) | | Constructor to pass along a message and an exception
See Also: com.ibatis.common.exception.RuntimeException Parameters: msg - - the message Parameters: sqlException - - the exception |
getErrorCode | public int getErrorCode()(Code) | | Getter for the error code
- the error code |
getNextException | public SQLException getNextException()(Code) | | Get the next exception in the chain
- the next exception |
getSQLState | public String getSQLState()(Code) | | Getter for the SQL State
- the state |
setNextException | public synchronized void setNextException(SQLException ex)(Code) | | Set the next exception in the chain
Parameters: ex - - the next exception |
|
|
|