Package org.gradle.api.artifacts
Class ResolveException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.gradle.api.GradleException
-
- org.gradle.internal.exceptions.DefaultMultiCauseException
-
- org.gradle.api.artifacts.ResolveException
-
- All Implemented Interfaces:
java.io.Serializable
,org.gradle.internal.exceptions.MultiCauseException
,org.gradle.internal.exceptions.NonGradleCauseExceptionsHolder
,org.gradle.internal.exceptions.ResolutionProvider
public class ResolveException extends org.gradle.internal.exceptions.DefaultMultiCauseException
An opaque exception, thrown when dependency resolution fails for some reason.
This type should only be extended and/or thrown by Gradle internal code.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description ResolveException(java.lang.String message, java.lang.Iterable<? extends java.lang.Throwable> causes)
Deprecated.This constructor will be made protected in 9.0protected
ResolveException(java.lang.String message, java.lang.Iterable<? extends java.lang.Throwable> causes, boolean dummy)
The actual constructor called by concrete resolve exception implementations.ResolveException(java.lang.String message, java.lang.Throwable cause)
Deprecated.This constructor will be removed in 9.0
-
Method Summary
-
Methods inherited from class org.gradle.internal.exceptions.DefaultMultiCauseException
getCause, getCauses, getMessage, getResolutions, hasCause, initCause, initCauses, printStackTrace, printStackTrace
-
-
-
-
Constructor Detail
-
ResolveException
@Deprecated public ResolveException(java.lang.String message, java.lang.Throwable cause)
Deprecated.This constructor will be removed in 9.0Do not call this constructor.
-
ResolveException
@Deprecated public ResolveException(java.lang.String message, java.lang.Iterable<? extends java.lang.Throwable> causes)
Deprecated.This constructor will be made protected in 9.0Do not call this constructor.
-
ResolveException
@Incubating protected ResolveException(java.lang.String message, java.lang.Iterable<? extends java.lang.Throwable> causes, boolean dummy)
The actual constructor called by concrete resolve exception implementations. Should not be called except from Gradle internal code.This constructor accepts a dummy parameter since we cannot call the constructor without it, as that emits a deprecation warning. In 9.0, we can change the above constructor to protected and remove this constructor.
- Since:
- 8.9
-
-