FileDocCategorySizeDatePackage
UnsupportedTypeException.javaAPI DocExample443Thu Jun 28 16:14:16 BST 2001com.ora.jsp.sql

UnsupportedTypeException.java

package com.ora.jsp.sql;

/**
 * This exception is thrown when trying to create an instance of
 * Row from a ResultSet with a column of a type that is not supported,
 * e.g. a BINARY column.
 *
 * @author Hans Bergsten, Gefion software <hans@gefionsoftware.com>
 * @version 1.0
 */
public class UnsupportedTypeException extends Exception {

    public UnsupportedTypeException(String message) {
        super(message);
    }
}