Class NoSuchColumnException

All Implemented Interfaces:
Serializable

public class NoSuchColumnException extends DataSetException
Thrown to indicate that a database column has been accessed that does not exist.
Since:
Feb 17, 2002
Version:
$Revision$
Author:
Manuel Laflamme
See Also:
  • Constructor Details

    • NoSuchColumnException

      public NoSuchColumnException()
      Deprecated.
      since 2.3.0. Prefer constructor taking a table/columnName as argument
    • NoSuchColumnException

      public NoSuchColumnException(String msg)
      Deprecated.
      since 2.3.0. Prefer constructor taking a table/columnName as argument
    • NoSuchColumnException

      public NoSuchColumnException(String tableName, String columnName)
      Creates an exception using the given table name + column name
      Parameters:
      tableName - table in which the column was not found. Can be null
      columnName - the column that was not found
      Since:
      2.3.0
    • NoSuchColumnException

      public NoSuchColumnException(String tableName, String columnName, String msg)
      Creates an exception using the given table name + column name
      Parameters:
      tableName - table in which the column was not found. Can be null
      columnName - the column that was not found
      msg - Additional message to append to the exception text
      Since:
      2.3.0
    • NoSuchColumnException

      public NoSuchColumnException(String msg, Throwable e)
      Deprecated.
      since 2.3.0. Prefer constructor taking a table/columnName as argument
      Parameters:
      msg -
      e -
    • NoSuchColumnException

      public NoSuchColumnException(Throwable e)
      Deprecated.
      since 2.3.0. Prefer constructor taking a table/columnName as argument
      Parameters:
      e -