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.ExceptionARegistryExceptionthrown when the registry cannot find an implementation of a requestedSequenceDB.- Version:
- $Revision: 2680 $
- Author:
- Brian Gilman, Thomas Down, Keith James, Matthew Pocock
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RegistryException()Creates a newRegistryExceptionwith no detail message.RegistryException(java.lang.String message)Creates a newRegistryExceptionwith the specified detail message.RegistryException(java.lang.String message, java.lang.Throwable t)RegistryException(java.lang.Throwable t)Creates a newRegistryExceptionwith 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 newRegistryExceptionwith no detail message.
-
RegistryException
public RegistryException(java.lang.String message)
Creates a newRegistryExceptionwith the specified detail message.- Parameters:
message- aString.
-
RegistryException
public RegistryException(java.lang.Throwable t)
Creates a newRegistryExceptionwith 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 newRegistryExceptionwith the specified detail message, wrapping anotherThrowable.- Parameters:
t- aThrowable.message- aString.
-
RegistryException
public RegistryException(java.lang.String message, java.lang.Throwable t)
-
-