Package org.apache.tajo.exception

Examples of org.apache.tajo.exception.UnsupportedException


   *
   * @see java.sql.Wrapper#isWrapperFor(java.lang.Class)
   */
  @Override
  public boolean isWrapperFor(Class<?> arg0) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here


   *
   * @see java.sql.Wrapper#unwrap(java.lang.Class)
   */
  @Override
  public <T> T unwrap(Class<T> arg0) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#absolute(int)
   */
  @Override
  public boolean absolute(int arg0) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#cancelRowUpdates()
   */
  @Override
  public void cancelRowUpdates() throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   * @see java.sql.ResultSet#clearWarnings()
   */
  @Override
  public void clearWarnings() throws SQLException {
    // TODO
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#deleteRow()
   */
  @Override
  public void deleteRow() throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#getArray(int)
   */
  @Override
  public Array getArray(int arg0) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#getArray(java.lang.String)
   */
  @Override
  public Array getArray(String arg0) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#getAsciiStream(int)
   */
  @Override
  public InputStream getAsciiStream(int arg0) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#getAsciiStream(java.lang.String)
   */
  @Override
  public InputStream getAsciiStream(String arg0) throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

TOP

Related Classes of org.apache.tajo.exception.UnsupportedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.