Class RegistryException

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    ProviderNotFoundException

    public class RegistryException
    extends java.lang.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:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      RegistryException()
      Creates a new RegistryException with no detail message.
      RegistryException​(java.lang.String message)
      Creates a new RegistryException with the specified detail message.
      RegistryException​(java.lang.String message, java.lang.Throwable t)  
      RegistryException​(java.lang.Throwable t)
      Creates a new RegistryException with no detail message, wrapping another Throwable.
      RegistryException​(java.lang.Throwable t, java.lang.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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • RegistryException

        public RegistryException()
        Creates a new RegistryException with no detail message.
      • RegistryException

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

        public RegistryException​(java.lang.Throwable t)
        Creates a new RegistryException with no detail message, wrapping another Throwable.
        Parameters:
        t - a Throwable.
      • RegistryException

        public RegistryException​(java.lang.Throwable t,
                                 java.lang.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​(java.lang.String message,
                                 java.lang.Throwable t)