Class Overview
XPathFactoryConfigurationException
represents a configuration error in a XPathFactory
environment.
Summary
[Expand]
Inherited Methods |
From class
javax.xml.xpath.XPathException
Throwable
|
getCause()
Get the cause of this XPathException.
|
void
|
printStackTrace(PrintWriter s)
Print stack trace to specified PrintWriter .
|
void
|
printStackTrace(PrintStream s)
Print stack trace to specified PrintStream .
|
void
|
printStackTrace()
Print stack trace to System.err .
|
|
From class
java.lang.Throwable
synchronized
Throwable
|
fillInStackTrace()
|
Throwable
|
getCause()
|
String
|
getLocalizedMessage()
|
String
|
getMessage()
|
StackTraceElement[]
|
getStackTrace()
|
synchronized
Throwable
|
initCause(Throwable arg0)
|
void
|
printStackTrace(PrintWriter arg0)
|
void
|
printStackTrace(PrintStream arg0)
|
void
|
printStackTrace()
|
void
|
setStackTrace(StackTraceElement[] arg0)
|
String
|
toString()
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|
Public Constructors
public
XPathFactoryConfigurationException
(String message)
Constructs a new XPathFactoryConfigurationException
with the specified detail message
.
The cause
is not initialized.
If message
is null
,
then a NullPointerException
is thrown.
Parameters
message
| The detail message. |
Throws
NullPointerException
| When message is
null .
|
public
XPathFactoryConfigurationException
(Throwable cause)
Constructs a new XPathFactoryConfigurationException
with the specified cause
.
If cause
is null
,
then a NullPointerException
is thrown.
Throws
NullPointerException
| if cause is null .
|