List of usage examples for java.sql SQLRecoverableException SQLRecoverableException
public SQLRecoverableException(Throwable cause)
SQLRecoverableException
object with a given cause
. From source file:com.github.adejanovski.cassandra.jdbc.CassandraStatement.java
protected final void checkNotClosed() throws SQLException { if (isClosed()) throw new SQLRecoverableException(WAS_CLOSED_STMT); }