Class DependencyCollectionException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.aether.RepositoryException
org.eclipse.aether.collection.DependencyCollectionException
All Implemented Interfaces:
Serializable

Thrown in case of bad artifact descriptors, version ranges or other issues encountered during calculation of the dependency graph.
See Also:
  • Constructor Details

    • DependencyCollectionException

      Creates a new exception with the specified result.
      Parameters:
      result - The collection result at the point the exception occurred, may be null.
    • DependencyCollectionException

      Creates a new exception with the specified result and detail message.
      Parameters:
      result - The collection result at the point the exception occurred, may be null.
      message - The detail message, may be null.
    • DependencyCollectionException

      public DependencyCollectionException(CollectResult result, String message, Throwable cause)
      Creates a new exception with the specified result, detail message and cause.
      Parameters:
      result - The collection result at the point the exception occurred, may be null.
      message - The detail message, may be null.
      cause - The exception that caused this one, may be null.
  • Method Details

    • getResult

      Gets the collection result at the point the exception occurred. Despite being incomplete, callers might want to use this result to fail gracefully and continue their operation with whatever interim data has been gathered.
      Returns:
      The collection result or null if unknown.