Package org.biojava.directory
Class RegistryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.biojava.directory.RegistryException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ProviderNotFoundException
A
RegistryException
thrown when the registry cannot
find an implementation of a requested SequenceDB
.- Version:
- $Revision$
- Author:
- Brian Gilman, Thomas Down, Keith James, Matthew Pocock
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newRegistryException
with no detail message.RegistryException
(String message) Creates a newRegistryException
with the specified detail message.RegistryException
(String message, Throwable t) Creates a newRegistryException
with no detail message, wrapping anotherThrowable
.RegistryException
(Throwable t, String message) Deprecated.use new RegistryException(message, cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RegistryException
public RegistryException()Creates a newRegistryException
with no detail message. -
RegistryException
Creates a newRegistryException
with the specified detail message.- Parameters:
message
- aString
.
-
RegistryException
Creates a newRegistryException
with no detail message, wrapping anotherThrowable
.- Parameters:
t
- aThrowable
.
-
RegistryException
Deprecated.use new RegistryException(message, cause)Creates a newRegistryException
with the specified detail message, wrapping anotherThrowable
.- Parameters:
t
- aThrowable
.message
- aString
.
-
RegistryException
-