/** * Runtime exception thrown when one tries to get at the * root of an empty tree. */ public class EmptyTreeException extends RuntimeException { public EmptyTreeException() { } public EmptyTreeException(String err) { super(err); } }