Package org.apache.tajo.exception

Examples of org.apache.tajo.exception.UnsupportedException


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


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

   * @see java.sql.ResultSet#getObject(int, java.util.Map)
   */
  @Override
  public Object getObject(int arg0, Map<String, Class<?>> arg1)
      throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   * @see java.sql.ResultSet#getObject(java.lang.String, java.util.Map)
   */
  @Override
  public Object getObject(String arg0, Map<String, Class<?>> arg1)
      throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#getObject(java.lang.String, java.lang.Class)
   */
  public <T> T getObject(String arg0, Class<T> arg1)
      throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

   *
   * @see java.sql.ResultSet#getObject(int, java.lang.Class)
   */
  public <T> T getObject(int arg0, Class<T> arg1)
      throws SQLException {
    throw new UnsupportedException();
  }
View Full Code Here

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

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

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

   *
   * @see java.sql.ResultSet#getRowId(java.lang.String)
   */
  @Override
  public RowId getRowId(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.