Package org.eclipse.aether.transfer
Class ArtifactFilteredOutException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.aether.RepositoryException
org.eclipse.aether.transfer.ArtifactTransferException
org.eclipse.aether.transfer.ArtifactNotFoundException
org.eclipse.aether.transfer.ArtifactFilteredOutException
- All Implemented Interfaces:
Serializable
Thrown when an artifact was filtered from a particular repository.
- Since:
- 1.9.6
- See Also:
-
Constructor Summary
ConstructorDescriptionArtifactFilteredOutException
(Artifact artifact, RemoteRepository repository, String message) Creates a new exception with the specified artifact, repository and detail message. -
Method Summary
Methods inherited from class org.eclipse.aether.transfer.ArtifactTransferException
getArtifact, getRepository, isFromCache
Methods inherited from class org.eclipse.aether.RepositoryException
getMessage
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ArtifactFilteredOutException
Creates a new exception with the specified artifact, repository and detail message.- Parameters:
artifact
- The missing artifact, may benull
.repository
- The involved remote repository, may benull
.message
- The detail message, may benull
.
-