public class DependencyResolutionException extends RepositoryException
| Constructor | 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 | Description |
|---|---|---|
DependencyResult |
getResult() |
Gets the dependency result at the point the exception occurred.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetMessagepublic 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.