Package org.biojava.directory
Class RegistryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.biojava.directory.RegistryException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ProviderNotFoundException
public class RegistryException extends java.lang.Exception
ARegistryException
thrown when the registry cannot find an implementation of a requestedSequenceDB
.- Version:
- $Revision$
- Author:
- Brian Gilman, Thomas Down, Keith James, Matthew Pocock
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RegistryException()
Creates a newRegistryException
with no detail message.RegistryException(java.lang.String message)
Creates a newRegistryException
with the specified detail message.RegistryException(java.lang.String message, java.lang.Throwable t)
RegistryException(java.lang.Throwable t)
Creates a newRegistryException
with no detail message, wrapping anotherThrowable
.RegistryException(java.lang.Throwable t, java.lang.String message)
Deprecated.use new RegistryException(message, cause)
-
-
-
Constructor Detail
-
RegistryException
public RegistryException()
Creates a newRegistryException
with no detail message.
-
RegistryException
public RegistryException(java.lang.String message)
Creates a newRegistryException
with the specified detail message.- Parameters:
message
- aString
.
-
RegistryException
public RegistryException(java.lang.Throwable t)
Creates a newRegistryException
with no detail message, wrapping anotherThrowable
.- Parameters:
t
- aThrowable
.
-
RegistryException
public RegistryException(java.lang.Throwable t, java.lang.String message)
Deprecated.use new RegistryException(message, cause)Creates a newRegistryException
with the specified detail message, wrapping anotherThrowable
.- Parameters:
t
- aThrowable
.message
- aString
.
-
RegistryException
public RegistryException(java.lang.String message, java.lang.Throwable t)
-
-