nu.xom.xslt
Class XSLException
public class XSLException
extends Exception
Thrown when an XSL stylesheet fails to compile
or an XSL transform fails.
XSLException(String message) -
Creates a new
XSLException
with the specified detail message.
|
XSLException(String message, Throwable cause) -
Creates a new
XSLException with the specified
detail message and an underlying root cause.
|
Throwable | getCause() -
Returns the underlying exception that caused this exception.
|
Throwable | initCause(Throwable cause) -
Sets the root cause of this exception.
|
XSLException
public XSLException(String message)
Creates a new XSLException
with the specified detail message.
message
- information about the cause of the exception
XSLException
public XSLException(String message,
Throwable cause)
Creates a new XSLException
with the specified
detail message and an underlying root cause.
message
- information about the cause of the exceptioncause
- the nested exception that caused this exception
getCause
public Throwable getCause()
Returns the underlying exception that caused this exception.
- the initial exception that caused this exception
to be thrown
initCause
public final Throwable initCause(Throwable cause)
Sets the root cause of this exception. This may
only be called once. Subsequent calls throw an
IllegalStateException
.
This method is unnecessary in Java 1.4 where it could easily be
inherited from the superclass. However, including it here
allows this method to be used in Java 1.3 and earlier.
cause
- the root cause of this exception
Copyright 2002-2009 Elliotte Rusty Harold
elharo@metalab.unc.edu