public class DAXParserFactoryException extends FactoryException
Modifier and Type | Field and Description |
---|---|
static String |
DEFAULT_NAME
The default classname that is associated with the exception.
|
mClassname
Constructor and Description |
---|
DAXParserFactoryException(String msg)
Constructs a
DAXParserFactoryException with no detail
message. |
DAXParserFactoryException(String msg,
String classname)
Constructs a
DAXParserFactoryException with the specified detailed
message. |
DAXParserFactoryException(String msg,
String classname,
Throwable cause)
Constructs a
DAXParserFactoryException with the
specified detailed message and a cause. |
DAXParserFactoryException(String msg,
Throwable cause)
Constructs a
DAXParserFactoryException with the
specified detailed message and a cause. |
convertException, convertException, convertException, getClassname
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public static final String DEFAULT_NAME
public DAXParserFactoryException(String msg)
DAXParserFactoryException
with no detail
message. The associated classname is set to value specified by
DEFAULT_NAME
.msg
- the detailed message.DEFAULT_NAME
public DAXParserFactoryException(String msg, String classname)
DAXParserFactoryException
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 DAXParserFactoryException(String msg, Throwable cause)
DAXParserFactoryException
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_NAME
public DAXParserFactoryException(String msg, String classname, Throwable cause)
DAXParserFactoryException
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.