Class DataSetException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AmbiguousTableNameException, CyclicTablesDependencyException, DataTypeException, NoPrimaryKeyException, NoSuchColumnException, NoSuchTableException, RowOutOfBoundsException

public class DataSetException extends DatabaseUnitException
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 Details

    • DataSetException

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

      public DataSetException(String msg)
      Constructs a DataSetException with the specified detail message and no encapsulated exception.
      Parameters:
      msg - the detail message.
    • DataSetException

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

      public DataSetException(Throwable e)
      Constructs a DataSetException with the encapsulated exception and use string representation as detail message.
      Parameters:
      e - the encapsulated exception.