nu.xom.canonical
Class CanonicalizationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by nu.xom.canonical.CanonicalizationException
All Implemented Interfaces:
java.io.Serializable

public class CanonicalizationException
extends java.lang.RuntimeException

Indicates problems with canonicalization.

Version:
1.1b3
Author:
Elliotte Rusty Harold
See Also:
Serialized Form

Constructor Summary
CanonicalizationException(java.lang.String message)
           Creates a new CanonicalizationException with a detail message.
 
Method Summary
 java.lang.Throwable getCause()
           Return the original cause that led to this exception, or null if there was no original exception.
 java.lang.Throwable initCause(java.lang.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

CanonicalizationException

public CanonicalizationException(java.lang.String message)

Creates a new CanonicalizationException with a detail message.

Parameters:
message - a string indicating the specific problem
Method Detail

getCause

public final java.lang.Throwable getCause()

Return the original cause that led to this exception, or null if there was no original exception.

Overrides:
getCause in class java.lang.Throwable
Returns:
the root cause of this exception

initCause

public 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.

Overrides:
initCause in class java.lang.Throwable
Parameters:
cause - the root cause of this exception
Returns:
this XMLException
Throws:
java.lang.IllegalArgumentException - if the cause is this exception (An exception cannot be its own cause.)
java.lang.IllegalStateException - if this method is called twice


Copyright 2002-2013 Elliotte Rusty Harold
elharo@ibiblio.org