FileDocCategorySizeDatePackage
NoSuchColumnException.javaAPI DocExample377Thu Jun 28 16:14:16 BST 2001com.ora.jsp.sql

NoSuchColumnException.java

package com.ora.jsp.sql;

/**
 * This exception is thrown when trying to get a column from a Row
 * using an invalid index or name.
 *
 * @author Hans Bergsten, Gefion software <hans@gefionsoftware.com>
 * @version 1.0
 */
public class NoSuchColumnException extends Exception {

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