Class RegistryException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.biojava.directory.RegistryException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ProviderNotFoundException

public class RegistryException extends Exception
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 Details

    • RegistryException

      Creates a new RegistryException with no detail message.
    • RegistryException

      public RegistryException(String message)
      Creates a new RegistryException with the specified detail message.
      Parameters:
      message - a String.
    • RegistryException

      Creates a new RegistryException with no detail message, wrapping another Throwable.
      Parameters:
      t - a Throwable.
    • RegistryException

      public RegistryException(Throwable t, String message)
      Deprecated.
      use new RegistryException(message, cause)
      Creates a new RegistryException with the specified detail message, wrapping another Throwable.
      Parameters:
      t - a Throwable.
      message - a String.
    • RegistryException

      public RegistryException(String message, Throwable t)