Package org.dbunit.dataset
Class NoSuchColumnException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.dbunit.DatabaseUnitException
org.dbunit.dataset.DataSetException
org.dbunit.dataset.NoSuchColumnException
- All Implemented Interfaces:
Serializable
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 Summary
ConstructorsConstructorDescriptionDeprecated.since 2.3.0.Deprecated.since 2.3.0.NoSuchColumnException(String tableName, String columnName) Creates an exception using the given table name + column nameNoSuchColumnException(String tableName, String columnName, String msg) Creates an exception using the given table name + column nameNoSuchColumnException(String msg, Throwable e) Deprecated.since 2.3.0.Deprecated.since 2.3.0. -
Method Summary
Methods inherited from class org.dbunit.DatabaseUnitException
getExceptionMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NoSuchColumnException
public NoSuchColumnException()Deprecated.since 2.3.0. Prefer constructor taking a table/columnName as argument -
NoSuchColumnException
Deprecated.since 2.3.0. Prefer constructor taking a table/columnName as argument -
NoSuchColumnException
Creates an exception using the given table name + column name- Parameters:
tableName- table in which the column was not found. Can be nullcolumnName- the column that was not found- Since:
- 2.3.0
-
NoSuchColumnException
Creates an exception using the given table name + column name- Parameters:
tableName- table in which the column was not found. Can be nullcolumnName- the column that was not foundmsg- Additional message to append to the exception text- Since:
- 2.3.0
-
NoSuchColumnException
Deprecated.since 2.3.0. Prefer constructor taking a table/columnName as argument- Parameters:
msg-e-
-
NoSuchColumnException
Deprecated.since 2.3.0. Prefer constructor taking a table/columnName as argument- Parameters:
e-
-