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:
java.io.Serializable
public class NoRepositoryLayoutException extends RepositoryException
Thrown in case of an unsupported repository layout.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private RemoteRepository
repository
-
Constructor Summary
Constructors Constructor Description NoRepositoryLayoutException(RemoteRepository repository)
Creates a new exception with the specified repository.NoRepositoryLayoutException(RemoteRepository repository, java.lang.String message)
Creates a new exception with the specified repository and detail message.NoRepositoryLayoutException(RemoteRepository repository, java.lang.String message, java.lang.Throwable cause)
Creates a new exception with the specified repository, detail message and cause.NoRepositoryLayoutException(RemoteRepository repository, java.lang.Throwable cause)
Creates a new exception with the specified repository and cause.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description RemoteRepository
getRepository()
Gets the remote repository whose layout is not supported.private static java.lang.String
toMessage(RemoteRepository repository)
-
Methods inherited from class org.eclipse.aether.RepositoryException
getMessage
-
-
-
-
Field Detail
-
repository
private final transient RemoteRepository repository
-
-
Constructor Detail
-
NoRepositoryLayoutException
public NoRepositoryLayoutException(RemoteRepository repository)
Creates a new exception with the specified repository.- Parameters:
repository
- The remote repository whose layout is not supported, may benull
.
-
NoRepositoryLayoutException
public NoRepositoryLayoutException(RemoteRepository repository, java.lang.String message)
Creates a new exception with the specified repository and detail message.- Parameters:
repository
- The remote repository whose layout is not supported, may benull
.message
- The detail message, may benull
.
-
NoRepositoryLayoutException
public NoRepositoryLayoutException(RemoteRepository repository, java.lang.Throwable cause)
Creates a new exception with the specified repository and cause.- Parameters:
repository
- The remote repository whose layout is not supported, may benull
.cause
- The exception that caused this one, may benull
.
-
NoRepositoryLayoutException
public NoRepositoryLayoutException(RemoteRepository repository, java.lang.String message, java.lang.Throwable cause)
Creates a new exception with the specified repository, detail message and cause.- Parameters:
repository
- The remote repository whose layout is not supported, may benull
.message
- The detail message, may benull
.cause
- The exception that caused this one, may benull
.
-
-
Method Detail
-
toMessage
private static java.lang.String toMessage(RemoteRepository repository)
-
getRepository
public RemoteRepository getRepository()
Gets the remote repository whose layout is not supported.- Returns:
- The unsupported remote repository or
null
if unknown.
-
-