Package org.dbunit.dataset.datatype
Class DataTypeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.dbunit.DatabaseUnitException
org.dbunit.dataset.DataSetException
org.dbunit.dataset.datatype.DataTypeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
TypeCastException
Base checked exception for errors related to
DataType value conversion.- Version:
- $Revision$
- Author:
- Manuel Laflamme
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aDataTypeExceptionwith no detail message and no encapsulated exception.DataTypeException(String msg) Constructs aDataTypeExceptionwith the specified detail message.DataTypeException(String msg, Throwable e) Constructs aDataTypeExceptionwith the specified detail message and encapsulated exception.Constructs aDataTypeExceptionwith the encapsulated exception. -
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
-
DataTypeException
public DataTypeException()Constructs aDataTypeExceptionwith no detail message and no encapsulated exception. -
DataTypeException
Constructs aDataTypeExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
DataTypeException
Constructs aDataTypeExceptionwith the encapsulated exception.- Parameters:
e- the encapsulated exception.
-
DataTypeException
Constructs aDataTypeExceptionwith the specified detail message and encapsulated exception.- Parameters:
msg- the detail message.e- the encapsulated exception.
-