Known Direct Subclasses
|
Class Overview
XPathExpressionException represents an error in an XPath expression.
Summary
| Public Constructors |
|
|
XPathExpressionException(String message)
Constructs a new XPathExpressionException
with the specified detail message.
|
|
|
XPathExpressionException(Throwable cause)
Constructs a new XPathExpressionException
with the specified cause.
|
|
[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
XPathExpressionException
(String message)
Constructs a new XPathExpressionException
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
XPathExpressionException
(Throwable cause)
Constructs a new XPathExpressionException
with the specified cause.
If cause is null,
then a NullPointerException is thrown.
Throws
| NullPointerException
| if cause is null.
|