|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
nu.xom.xslt.XSLException
public class XSLException
Thrown when an XSL stylesheet fails to compile or an XSL transform fails.
Constructor Summary | |
---|---|
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. |
Method Summary | |
---|---|
Throwable |
getCause()
Returns the underlying exception that caused this exception. |
Throwable |
initCause(Throwable cause)
Sets the root cause of this exception. |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
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 exceptionpublic XSLException(String message)
Creates a new XSLException
with the specified detail message.
message
- information about the cause of the exceptionMethod Detail |
---|
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.
initCause
in class Throwable
cause
- the root cause of this exception
XSLException
IllegalArgumentException
- if the cause is this exception
(An exception cannot be its own cause.)
IllegalStateException
- if this method is called twicepublic Throwable getCause()
Returns the underlying exception that caused this exception.
getCause
in class Throwable
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |