public class DependencyResolutionException extends RepositoryException
| Constructor and Description |
|---|
DependencyResolutionException(DependencyResult result,
java.lang.String message,
java.lang.Throwable cause)
Creates a new exception with the specified result, detail message and cause.
|
DependencyResolutionException(DependencyResult result,
java.lang.Throwable cause)
Creates a new exception with the specified result and cause.
|
| Modifier and Type | Method and Description |
|---|---|
DependencyResult |
getResult()
Gets the dependency result at the point the exception occurred.
|
getMessagepublic DependencyResolutionException(DependencyResult result, java.lang.Throwable cause)
result - The dependency result at the point the exception occurred, may be null.cause - The exception that caused this one, may be null.public DependencyResolutionException(DependencyResult result, java.lang.String message, java.lang.Throwable cause)
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.public DependencyResult getResult()
null if unknown.