Package org.eclipse.aether.transfer
Class RepositoryOfflineException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.aether.RepositoryException
org.eclipse.aether.transfer.RepositoryOfflineException
- All Implemented Interfaces:
- Serializable
Thrown when a transfer could not be performed because a remote repository is not accessible in offline mode.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionRepositoryOfflineException(RemoteRepository repository) Creates a new exception with the specified repository.RepositoryOfflineException(RemoteRepository repository, String message) Creates a new exception with the specified repository and detail message.
- 
Method SummaryModifier and TypeMethodDescriptionGets the remote repository that could not be accessed due to offline mode.Methods inherited from class org.eclipse.aether.RepositoryExceptiongetMessageMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
RepositoryOfflineExceptionCreates a new exception with the specified repository.- Parameters:
- repository- The inaccessible remote repository, may be- null.
 
- 
RepositoryOfflineExceptionCreates a new exception with the specified repository and detail message.- Parameters:
- repository- The inaccessible remote repository, may be- null.
- message- The detail message, may be- null.
 
 
- 
- 
Method Details- 
getRepositoryGets the remote repository that could not be accessed due to offline mode.- Returns:
- The inaccessible remote repository or nullif unknown.
 
 
-