Package org.dbunit.dataset
Class NoSuchTableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.dbunit.DatabaseUnitException
org.dbunit.dataset.DataSetException
org.dbunit.dataset.NoSuchTableException
- All Implemented Interfaces:
Serializable
Signals that a dataset does not contain a table with the requested name.
- Since:
- Feb 17, 2002
- Version:
- $Revision$
- Author:
- Manuel Laflamme
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.Constructs aNoSuchTableExceptionwith the specified detail message.NoSuchTableException(String msg, Throwable e) Constructs aNoSuchTableExceptionwith the specified detail message and cause.Constructs aNoSuchTableExceptionwith the specified cause. -
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
-
NoSuchTableException
public NoSuchTableException()Default constructor. -
NoSuchTableException
Constructs aNoSuchTableExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
NoSuchTableException
Constructs aNoSuchTableExceptionwith the specified detail message and cause.- Parameters:
msg- the detail message.e- the cause.
-
NoSuchTableException
Constructs aNoSuchTableExceptionwith the specified cause.- Parameters:
e- the cause.
-