com.ibm.dom.util
Class TreeTraversal.ToNextSiblingTraversalException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.ibm.dom.util.TreeTraversal.ToNextSiblingTraversalException

public static class TreeTraversal.ToNextSiblingTraversalException
extends java.lang.Exception

XML4J tree traversal exception which signals from a Visitor to the tree traversal algorithm that further traversal of the current Node's children should be ended because the visit on this portion of thee document object hierarchy has been successfully completed. For example, the MakeDigestVisitor throws this exception when a digest already exists on a given Node, and there is no need to traverse children of this Node. Note that this exception constitutes a request that a traversal algorithm is free to ignore.

See Also:
com.ibm.xml.parser.ToNextSiblingTraversalException, Serialized Form

Constructor Summary
TreeTraversal.ToNextSiblingTraversalException()
          Constructor for exception with no detail message.
TreeTraversal.ToNextSiblingTraversalException(java.lang.String msg)
          Constructor for exception with detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TreeTraversal.ToNextSiblingTraversalException

public TreeTraversal.ToNextSiblingTraversalException()
Constructor for exception with no detail message.

TreeTraversal.ToNextSiblingTraversalException

public TreeTraversal.ToNextSiblingTraversalException(java.lang.String msg)
Constructor for exception with detail message.
Parameters:
msg - The detail message for the exception.