org.jaxen
Class FunctionCallException
public class FunctionCallException
Thrown if an exception occurs during the evaluation of a function.
This exception may include a root exception--for instance an
IOException if the real problem was failure to
load an XML document via the XSLT document() function.
FunctionCallException(String message)- Create a new FunctionCallException with the specified detail message.
|
FunctionCallException(String message, Exception nestedException)- Create a new FunctionCallException with the specified detail message
and root cause.
|
FunctionCallException(Throwable nestedException)- Create a new FunctionCallException with the specified root cause.
|
serialVersionUID
private static final long serialVersionUID
FunctionCallException
public FunctionCallException(String message)
Create a new FunctionCallException with the specified detail message.
message - the detail message
FunctionCallException
public FunctionCallException(String message,
Exception nestedException) Create a new FunctionCallException with the specified detail message
and root cause.
message - the detail messagenestedException - the cause of this exception
FunctionCallException
public FunctionCallException(Throwable nestedException)
Create a new FunctionCallException with the specified root cause.
nestedException - the cause of this exception
getNestedException
public Throwable getNestedException()
replaced by getCause()
Returns the exception that caused this function call to fail.
Use getCause instead.
- the exception that caused this function call to fail