FileDocCategorySizeDatePackage
UnsupportedConversionException.javaAPI DocExample483Thu Jun 28 16:14:16 BST 2001com.ora.jsp.sql

UnsupportedConversionException.java

package com.ora.jsp.sql;

/**
 * This exception is thrown when trying to call a get method on an
 * instance of a Value subclass with a return type that's not supported
 * for the data type represented by the subclass.
 *
 * @author Hans Bergsten, Gefion software <hans@gefionsoftware.com>
 * @version 1.0
 */
public class UnsupportedConversionException extends Exception {

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