List of usage examples for java.sql SQLClientInfoException setNextException
public void setNextException(SQLException ex)
SQLException
object to the end of the chain. From source file:net.starschema.clouddb.jdbc.BQConnection.java
/** * <p>/* ww w. jav a2 s . co m*/ * <h1>Implementation Details:</h1><br> * Not implemented yet. * </p> * * @throws BQSQLException */ @Override public void setClientInfo(Properties properties) throws SQLClientInfoException { SQLClientInfoException e = new SQLClientInfoException(); e.setNextException(new BQSQLException("Not implemented. setClientInfo(properties)")); throw e; }
From source file:net.starschema.clouddb.jdbc.BQConnection.java
/** * <p>//www.ja v a 2s .c o m * <h1>Implementation Details:</h1><br> * Not implemented yet. * </p> * * @throws BQSQLException */ @Override public void setClientInfo(String name, String value) throws SQLClientInfoException { SQLClientInfoException e = new SQLClientInfoException(); e.setNextException(new BQSQLException("Not implemented. setClientInfo(properties)")); throw e; }