java.lang.Object | |||
↳ | java.lang.Throwable | ||
↳ | java.lang.Error | ||
↳ | javax.xml.parsers.FactoryConfigurationError |
Represents an error that occurred during the configuration of parser factory.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new
FactoryConfigurationError with no error message and
no cause. | |||||||||||
Creates a new
FactoryConfigurationError with no error message and
a given cause. | |||||||||||
Creates a new
FactoryConfigurationError with a given error
message and cause. | |||||||||||
Creates a new
FactoryConfigurationError with a given error
message and no cause. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the cause of the error, in case there is one.
| |||||||||||
Returns the message of the error, in case there is one.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class java.lang.Throwable
| |||||||||||
From class java.lang.Object
|
Creates a new FactoryConfigurationError
with no error message and
no cause.
Creates a new FactoryConfigurationError
with no error message and
a given cause.
cause | the cause of the error. Note that the nested exception will
be stored in a special attribute, and can be queried using the
getException() method. It does not use the facility the
Exception class provides for storing nested exceptions, since the
XML API predates that facility. |
---|
Creates a new FactoryConfigurationError
with a given error
message and cause.
cause | the cause of the error. Note that the nested exception will
be stored in a special attribute, and can be queried using the
getException() method. It does not use the facility the
Exception class provides for storing nested exceptions,
since the XML API predates that facility. |
---|---|
message | The error message. |
Creates a new FactoryConfigurationError
with a given error
message and no cause.
message | the error message. |
---|
Returns the cause of the error, in case there is one.
null
if none is
set.Returns the message of the error, in case there is one.
toString()
on that object is returned. Otherwise, null
is returned.