public class RegistryException
extends java.lang.Exception
RegistryException thrown when the registry cannot
find an implementation of a requested SequenceDB.| Constructor and 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)
|
public RegistryException()
RegistryException with no detail
message.public RegistryException(java.lang.String message)
RegistryException with the specified
detail message.message - a String.public RegistryException(java.lang.Throwable t)
RegistryException with no detail
message, wrapping another Throwable.t - a Throwable.public RegistryException(java.lang.Throwable t,
java.lang.String message)
RegistryException with the specified
detail message, wrapping another Throwable.t - a Throwable.message - a String.public RegistryException(java.lang.String message,
java.lang.Throwable t)