Class Utilities.UnorderableException

All Implemented Interfaces:
Serializable
Enclosing class:
Utilities

@Deprecated public static class Utilities.UnorderableException extends RuntimeException
Deprecated.
Used only by the deprecated partialSort
Exception indicating that a given list could not be partially-ordered.
See Also:
  • Constructor Details

    • UnorderableException

      public UnorderableException(Collection unorderable, Map deps)
      Deprecated.
      Create a new unorderable-list exception with no detail message.
      Parameters:
      unorderable - a collection of list elements which could not be ordered (because there was some sort of cycle)
      deps - dependencies associated with the list; a map from list elements to sets of list elements which that element must appear after
    • UnorderableException

      public UnorderableException(String message, Collection unorderable, Map deps)
      Deprecated.
      Create a new unorderable-list exception with a specified detail message.
      Parameters:
      message - the detail message
      unorderable - a collection of list elements which could not be ordered (because there was some sort of cycle)
      deps - dependencies associated with the list; a map from list elements to sets of list elements which that element must appear after
  • Method Details