Class MalformedTreeException

  • All Implemented Interfaces:
    java.io.Serializable

    public class MalformedTreeException
    extends java.lang.RuntimeException
    Thrown to indicate that an edit got added to a parent edit but the child edit somehow conflicts with the parent or one of it siblings.

    This class is not intended to be serialized.

    Since:
    3.0
    See Also:
    TextEdit.addChild(TextEdit), TextEdit.addChildren(TextEdit[]), Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      TextEdit getChild()
      Returns the child edit that caused the exception.
      TextEdit getParent()
      Returns the parent edit that caused the exception.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • MalformedTreeException

        public MalformedTreeException​(TextEdit parent,
                                      TextEdit child,
                                      java.lang.String message)
        Constructs a new malformed tree exception.
        Parameters:
        parent - the parent edit
        child - the child edit
        message - the detail message
    • Method Detail

      • getParent

        public TextEdit getParent()
        Returns the parent edit that caused the exception.
        Returns:
        the parent edit
      • getChild

        public TextEdit getChild()
        Returns the child edit that caused the exception.
        Returns:
        the child edit