Package org.eclipse.aether.transfer
Class ArtifactTransferException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.aether.RepositoryException
-
- org.eclipse.aether.transfer.ArtifactTransferException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ArtifactNotFoundException
public class ArtifactTransferException extends RepositoryException
Thrown when an artifact could not be uploaded/downloaded to/from a particular remote repository.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private Artifact
artifact
private boolean
fromCache
private RemoteRepository
repository
-
Constructor Summary
Constructors Constructor Description ArtifactTransferException(Artifact artifact, RemoteRepository repository, java.lang.String message)
Creates a new exception with the specified artifact, repository and detail message.ArtifactTransferException(Artifact artifact, RemoteRepository repository, java.lang.String message, boolean fromCache)
Creates a new exception with the specified artifact, repository and detail message.ArtifactTransferException(Artifact artifact, RemoteRepository repository, java.lang.String message, java.lang.Throwable cause)
Creates a new exception with the specified artifact, repository, detail message and cause.ArtifactTransferException(Artifact artifact, RemoteRepository repository, java.lang.Throwable cause)
Creates a new exception with the specified artifact, repository and cause.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Artifact
getArtifact()
Gets the artifact that could not be transferred.RemoteRepository
getRepository()
Gets the remote repository involved in the transfer.(package private) static java.lang.String
getString(java.lang.String prefix, RemoteRepository repository)
boolean
isFromCache()
Indicates whether this exception actually just occurred or was played back from the error cache.-
Methods inherited from class org.eclipse.aether.RepositoryException
getMessage
-
-
-
-
Field Detail
-
artifact
private final transient Artifact artifact
-
repository
private final transient RemoteRepository repository
-
fromCache
private final boolean fromCache
-
-
Constructor Detail
-
ArtifactTransferException
public ArtifactTransferException(Artifact artifact, RemoteRepository repository, java.lang.String message)
Creates a new exception with the specified artifact, repository and detail message.- Parameters:
artifact
- The untransferable artifact, may benull
.repository
- The involved remote repository, may benull
.message
- The detail message, may benull
.
-
ArtifactTransferException
public ArtifactTransferException(Artifact artifact, RemoteRepository repository, java.lang.String message, boolean fromCache)
Creates a new exception with the specified artifact, repository and detail message.- Parameters:
artifact
- The untransferable artifact, may benull
.repository
- The involved remote repository, may benull
.message
- The detail message, may benull
.fromCache
-true
if the exception was played back from the error cache,false
if the exception actually just occurred.
-
ArtifactTransferException
public ArtifactTransferException(Artifact artifact, RemoteRepository repository, java.lang.Throwable cause)
Creates a new exception with the specified artifact, repository and cause.- Parameters:
artifact
- The untransferable artifact, may benull
.repository
- The involved remote repository, may benull
.cause
- The exception that caused this one, may benull
.
-
ArtifactTransferException
public ArtifactTransferException(Artifact artifact, RemoteRepository repository, java.lang.String message, java.lang.Throwable cause)
Creates a new exception with the specified artifact, repository, detail message and cause.- Parameters:
artifact
- The untransferable artifact, may benull
.repository
- The involved remote repository, may benull
.message
- The detail message, may benull
.cause
- The exception that caused this one, may benull
.
-
-
Method Detail
-
getString
static java.lang.String getString(java.lang.String prefix, RemoteRepository repository)
-
getArtifact
public Artifact getArtifact()
Gets the artifact that could not be transferred.- Returns:
- The troublesome artifact or
null
if unknown.
-
getRepository
public RemoteRepository getRepository()
Gets the remote repository involved in the transfer.- Returns:
- The involved remote repository or
null
if unknown.
-
isFromCache
public boolean isFromCache()
Indicates whether this exception actually just occurred or was played back from the error cache.- Returns:
true
if the exception was played back from the error cache,false
if the exception actually occurred just now.
-
-