Class DataTypeException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
TypeCastException

public class DataTypeException extends DataSetException
Base checked exception for errors related to DataType value conversion.
Version:
$Revision$
Author:
Manuel Laflamme
See Also:
  • Constructor Details

    • DataTypeException

      public DataTypeException()
      Constructs a DataTypeException with no detail message and no encapsulated exception.
    • DataTypeException

      public DataTypeException(String msg)
      Constructs a DataTypeException with the specified detail message.
      Parameters:
      msg - the detail message.
    • DataTypeException

      public DataTypeException(Throwable e)
      Constructs a DataTypeException with the encapsulated exception.
      Parameters:
      e - the encapsulated exception.
    • DataTypeException

      public DataTypeException(String msg, Throwable e)
      Constructs a DataTypeException with the specified detail message and encapsulated exception.
      Parameters:
      msg - the detail message.
      e - the encapsulated exception.