Class CyclicTablesDependencyException

All Implemented Interfaces:
Serializable

public class CyclicTablesDependencyException extends DataSetException
Signals that a set of tables has a foreign-key dependency cycle that cannot be resolved into a linear ordering.
Since:
Mar 23, 2003
Version:
$Revision$
Author:
Manuel Laflamme
See Also:
  • Constructor Details

    • CyclicTablesDependencyException

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

      public CyclicTablesDependencyException(String tableName, Set cyclicTableNames)
      Constructs a CyclicTablesDependencyException for the given table and its cyclic dependencies.
      Parameters:
      tableName - the table with a foreign-key dependency cycle.
      cyclicTableNames - the names of the tables composing the cycle.
      Since:
      2.4.2