Package org.eclipse.aether.transfer
Class NoRepositoryLayoutException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.aether.RepositoryException
org.eclipse.aether.transfer.NoRepositoryLayoutException
- All Implemented Interfaces:
- Serializable
Thrown in case of an unsupported repository layout.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionNoRepositoryLayoutException(RemoteRepository repository) Creates a new exception with the specified repository.NoRepositoryLayoutException(RemoteRepository repository, String message) Creates a new exception with the specified repository and detail message.NoRepositoryLayoutException(RemoteRepository repository, String message, Throwable cause) Creates a new exception with the specified repository, detail message and cause.NoRepositoryLayoutException(RemoteRepository repository, Throwable cause) Creates a new exception with the specified repository and cause.
- 
Method SummaryModifier and TypeMethodDescriptionGets the remote repository whose layout is not supported.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- 
NoRepositoryLayoutExceptionCreates a new exception with the specified repository.- Parameters:
- repository- The remote repository whose layout is not supported, may be- null.
 
- 
NoRepositoryLayoutExceptionCreates a new exception with the specified repository and detail message.- Parameters:
- repository- The remote repository whose layout is not supported, may be- null.
- message- The detail message, may be- null.
 
- 
NoRepositoryLayoutExceptionCreates a new exception with the specified repository and cause.- Parameters:
- repository- The remote repository whose layout is not supported, may be- null.
- cause- The exception that caused this one, may be- null.
 
- 
NoRepositoryLayoutExceptionCreates a new exception with the specified repository, detail message and cause.- Parameters:
- repository- The remote repository whose layout 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- 
getRepositoryGets the remote repository whose layout is not supported.- Returns:
- The unsupported remote repository or nullif unknown.
 
 
-