Package nu.xom.canonical
Class CanonicalizationException
- Object
-
- Throwable
-
- Exception
-
- RuntimeException
-
- nu.xom.canonical.CanonicalizationException
-
- All Implemented Interfaces:
Serializable
public class CanonicalizationException extends RuntimeException
Indicates problems with canonicalization.
- Version:
- 1.1b3
- Author:
- Elliotte Rusty Harold
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CanonicalizationException(String message)
Creates a newCanonicalizationException
with a detail message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Method Detail
-
getCause
public final Throwable getCause()
Return the original cause that led to this exception, or null if there was no original exception.
- Overrides:
getCause
in classThrowable
- Returns:
- the root cause of this exception
-
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.
- Overrides:
initCause
in classThrowable
- Parameters:
cause
- the root cause of this exception- Returns:
- this
XMLException
- Throws:
IllegalArgumentException
- if the cause is this exception (An exception cannot be its own cause.)IllegalStateException
- if this method is called twice
-
-