Files
net_datastructures_5_sel_so…/net/datastructures/NonEmptyTreeException.java

12 lines
262 B
Java

package net.datastructures;
/**
* Runtime exception thrown when one tries to create the root of a
* tree that is not empty.
*/
public class NonEmptyTreeException extends RuntimeException {
public NonEmptyTreeException(String err) {
super(err);
}
}