Constructs a new XPathException
with the specified detail message
.
The cause
is not initialized.
If message
is null
,
then a NullPointerException
is thrown.
super(message);
if ( message == null ) {
throw new NullPointerException ( "message can't be null");
}
this.cause = null;