Package org.dbunit.dataset
Class DataSetException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.dbunit.DatabaseUnitException
org.dbunit.dataset.DataSetException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AmbiguousTableNameException,CyclicTablesDependencyException,DataTypeException,NoPrimaryKeyException,NoSuchColumnException,NoSuchTableException,RowOutOfBoundsException
Thrown to indicate that a problem occurred with a dataset.
- Since:
- Feb 17, 2002
- Version:
- $Revision$ $Date$
- Author:
- Manuel Laflamme, Last changed by: $Author$
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aDataSetExceptionwith no detail message and no encapsulated exception.DataSetException(String msg) Constructs aDataSetExceptionwith the specified detail message and no encapsulated exception.DataSetException(String msg, Throwable e) Constructs aDataSetExceptionwith the specified detail message and encapsulated exception.Constructs aDataSetExceptionwith the encapsulated exception and use string representation as detail message. -
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
-
DataSetException
public DataSetException()Constructs aDataSetExceptionwith no detail message and no encapsulated exception. -
DataSetException
Constructs aDataSetExceptionwith the specified detail message and no encapsulated exception.- Parameters:
msg- the detail message.
-
DataSetException
Constructs aDataSetExceptionwith the specified detail message and encapsulated exception.- Parameters:
msg- the detail message.e- the encapsulated exception.
-
DataSetException
Constructs aDataSetExceptionwith the encapsulated exception and use string representation as detail message.- Parameters:
e- the encapsulated exception.
-