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:
java.io.Serializable
public class ArtifactFilteredOutException extends ArtifactNotFoundException
Thrown when an artifact was filtered from a particular repository.- Since:
- 1.9.6
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ArtifactFilteredOutException(Artifact artifact, RemoteRepository repository, java.lang.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, getString, isFromCache
-
Methods inherited from class org.eclipse.aether.RepositoryException
getMessage
-
-
-
-
Constructor Detail
-
ArtifactFilteredOutException
public ArtifactFilteredOutException(Artifact artifact, RemoteRepository repository, java.lang.String message)
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
.
-
-