Class NoRepositoryConnectorException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.aether.RepositoryException
org.eclipse.aether.transfer.NoRepositoryConnectorException
All Implemented Interfaces:
Serializable

Thrown in case of an unsupported remote repository type.
See Also:
  • Constructor Details

    • NoRepositoryConnectorException

      Creates a new exception with the specified repository.
      Parameters:
      repository - The remote repository whose content type is not supported, may be null.
    • NoRepositoryConnectorException

      Creates a new exception with the specified repository and detail message.
      Parameters:
      repository - The remote repository whose content type is not supported, may be null.
      message - The detail message, may be null.
    • NoRepositoryConnectorException

      Creates a new exception with the specified repository and cause.
      Parameters:
      repository - The remote repository whose content type is not supported, may be null.
      cause - The exception that caused this one, may be null.
    • NoRepositoryConnectorException

      public NoRepositoryConnectorException(RemoteRepository repository, String message, Throwable cause)
      Creates a new exception with the specified repository, detail message and cause.
      Parameters:
      repository - The remote repository whose content type is not supported, may be null.
      message - The detail message, may be null.
      cause - The exception that caused this one, may be null.
  • Method Details

    • getRepository

      Gets the remote repository whose content type is not supported.
      Returns:
      The unsupported remote repository or null if unknown.