public class ReplicaSelectorFactoryException
extends edu.isi.pegasus.common.util.FactoryException
| Modifier and Type | Field and Description |
|---|---|
static String |
DEFAULT_NAME
The default classname that is associated with the exception.
|
| Constructor and Description |
|---|
ReplicaSelectorFactoryException(String msg)
Constructs a
ReplicaSelectorFactoryException with no detail
message. |
ReplicaSelectorFactoryException(String msg,
String classname)
Constructs a
ReplicaSelectorFactoryException with the specified detailed
message. |
ReplicaSelectorFactoryException(String msg,
String classname,
Throwable cause)
Constructs a
ReplicaSelectorFactoryException with the
specified detailed message and a cause. |
ReplicaSelectorFactoryException(String msg,
Throwable cause)
Constructs a
ReplicaSelectorFactoryException with the
specified detailed message and a cause. |
convertException, convertException, convertException, getClassnameaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic static final String DEFAULT_NAME
public ReplicaSelectorFactoryException(String msg)
ReplicaSelectorFactoryException with no detail
message. The associated classname is set to value specified by
DEFAULT_NAME.msg - the detailed message.DEFAULT_NAMEpublic ReplicaSelectorFactoryException(String msg, String classname)
ReplicaSelectorFactoryException with the specified detailed
message.msg - is the detailed message.classname - the name of class that was trying to be instantiated or
some other signifier like module name.public ReplicaSelectorFactoryException(String msg, Throwable cause)
ReplicaSelectorFactoryException with the
specified detailed message and a cause. The associated classname is set
to value specified by DEFAULT_NAME.msg - is the detailed message that is to be logged.cause - is the cause (which is saved for later retrieval by the
Throwable.getCause() method). A null
value is permitted, and indicates that the cause is nonexistent or
unknown.DEFAULT_NAMEpublic ReplicaSelectorFactoryException(String msg, String classname, Throwable cause)
ReplicaSelectorFactoryException with the
specified detailed message and a cause.msg - is the detailed message that is to be logged.classname - the name of class that was trying to be instantiated.cause - is the cause (which is saved for later retrieval by the
Throwable.getCause() method). A null
value is permitted, and indicates that the cause is nonexistent or
unknown.