public class XSLException
extends java.lang.Exception
Thrown when an XSL stylesheet fails to compile or an XSL transform fails.
Constructor and Description |
---|
XSLException(java.lang.String message)
Creates a new
XSLException
with the specified detail message. |
XSLException(java.lang.String message,
java.lang.Throwable cause)
Creates a new
XSLException with the specified
detail message and an underlying root cause. |
Modifier and Type | Method and Description |
---|---|
java.lang.Throwable |
getCause()
Returns the underlying exception that caused this exception.
|
java.lang.Throwable |
initCause(java.lang.Throwable cause)
Sets the root cause of this exception.
|
public XSLException(java.lang.String message, java.lang.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 exceptionpublic XSLException(java.lang.String message)
Creates a new XSLException
with the specified detail message.
message
- information about the cause of the exceptionpublic final java.lang.Throwable initCause(java.lang.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.
initCause
in class java.lang.Throwable
cause
- the root cause of this exceptionXSLException
java.lang.IllegalArgumentException
- if the cause is this exception
(An exception cannot be its own cause.)java.lang.IllegalStateException
- if this method is called twicepublic java.lang.Throwable getCause()
Returns the underlying exception that caused this exception.
getCause
in class java.lang.Throwable
Copyright 2002-2013 Elliotte Rusty Harold
elharo@ibiblio.org