Class DependencyResolutionException

  • All Implemented Interfaces:
    java.io.Serializable

    public class DependencyResolutionException
    extends RepositoryException
    Thrown in case of a unresolvable dependencies.
    See Also:
    Serialized Form
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      private static java.lang.String getMessage​(java.lang.Throwable cause)  
      DependencyResult getResult()
      Gets the dependency result at the point the exception occurred.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • DependencyResolutionException

        public DependencyResolutionException​(DependencyResult result,
                                             java.lang.Throwable cause)
        Creates a new exception with the specified result and cause.
        Parameters:
        result - The dependency result at the point the exception occurred, may be null.
        cause - The exception that caused this one, may be null.
      • DependencyResolutionException

        public DependencyResolutionException​(DependencyResult result,
                                             java.lang.String message,
                                             java.lang.Throwable cause)
        Creates a new exception with the specified result, detail message and cause.
        Parameters:
        result - The dependency 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 Detail

      • getMessage

        private static java.lang.String getMessage​(java.lang.Throwable cause)
      • getResult

        public DependencyResult getResult()
        Gets the dependency 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 dependency result or null if unknown.