public class NoRepositoryLayoutException extends RepositoryException
| 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.
|
| Modifier and Type | Method | Description |
|---|---|---|
RemoteRepository |
getRepository() |
Gets the remote repository whose layout is not supported.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetMessagepublic NoRepositoryLayoutException(RemoteRepository repository)
repository - The remote repository whose layout is not supported, may be null.public NoRepositoryLayoutException(RemoteRepository repository, java.lang.String message)
repository - The remote repository whose layout is not supported, may be null.message - The detail message, may be null.public NoRepositoryLayoutException(RemoteRepository repository, java.lang.Throwable cause)
repository - The remote repository whose layout is not supported, may be null.cause - The exception that caused this one, may be null.public NoRepositoryLayoutException(RemoteRepository repository, java.lang.String message, java.lang.Throwable cause)
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.public RemoteRepository getRepository()
null if unknown.