Package org.eclipse.text.edits
Class MalformedTreeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.eclipse.text.edits.MalformedTreeException
-
- All Implemented Interfaces:
java.io.Serializable
public class MalformedTreeException extends java.lang.RuntimeExceptionThrown 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
-
-
Constructor Summary
Constructors Constructor Description MalformedTreeException(TextEdit parent, TextEdit child, java.lang.String message)Constructs a new malformed tree exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TextEditgetChild()Returns the child edit that caused the exception.TextEditgetParent()Returns the parent edit that caused the exception.
-