Class Utilities.UnorderableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.openide.util.Utilities.UnorderableException
- All Implemented Interfaces:
Serializable
- Enclosing class:
Utilities
Deprecated.
Used only by the deprecated partialSort
Exception indicating that a given list could not be partially-ordered.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUnorderableException(String message, Collection unorderable, Map deps) Deprecated.Create a new unorderable-list exception with a specified detail message.UnorderableException(Collection unorderable, Map deps) Deprecated.Create a new unorderable-list exception with no detail message. -
Method Summary
Modifier and TypeMethodDescriptiongetDeps()Deprecated.Get the dependencies.Deprecated.Get the unorderable elements.Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnorderableException
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
Deprecated.Create a new unorderable-list exception with a specified detail message.- Parameters:
message- the detail messageunorderable- 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
-
getUnorderable
Deprecated.Get the unorderable elements.- Returns:
- the elements
- See Also:
-
getDeps
-