/* BadOperation.java */ package tree; /** * Implements an exception that indicates that the user is attempting an * illegal operation. */ public class BadOperation extends Exception { BadOperation() { super(); } }