nu.xom.canonical
public class CanonicalizationException extends RuntimeException
Indicates problems with canonicalization.
Constructor and Description |
---|
CanonicalizationException(String message)
Creates a new
CanonicalizationException
with a detail message. |
Modifier and Type | Method and Description |
---|---|
Throwable |
getCause()
Return the original cause that led to this exception,
or null if there was no original exception.
|
Throwable |
initCause(Throwable cause)
Sets the root cause of this exception.
|
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public CanonicalizationException(String message)
Creates a new CanonicalizationException
with a detail message.
message
- a string indicating the specific problempublic final Throwable getCause()
Return the original cause that led to this exception, or null if there was no original exception.
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 exceptionXMLException
IllegalArgumentException
- if the cause is this exception
(An exception cannot be its own cause.)IllegalStateException
- if this method is called twiceCopyright 2002-2010 <a href='http://www.elharo.com/'>Elliotte Rusty Harold</a><br /> <a href='mailto:elharo%40ibiblio%2Eorg?Subject=XOM'>elharo@ibiblio.org</a>