Class RepositoryOfflineException

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      RemoteRepository getRepository()
      Gets the remote repository that could not be accessed due to offline mode.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • RepositoryOfflineException

        public RepositoryOfflineException​(RemoteRepository repository)
        Creates a new exception with the specified repository.
        Parameters:
        repository - The inaccessible remote repository, may be null.
      • RepositoryOfflineException

        public RepositoryOfflineException​(RemoteRepository repository,
                                          java.lang.String message)
        Creates 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 Detail

      • getRepository

        public RemoteRepository getRepository()
        Gets the remote repository that could not be accessed due to offline mode.
        Returns:
        The inaccessible remote repository or null if unknown.