data_structures_free
This commit is contained in:
11
net/datastructures/EmptyTreeException.java
Normal file
11
net/datastructures/EmptyTreeException.java
Normal file
@@ -0,0 +1,11 @@
|
||||
package net.datastructures;
|
||||
/**
|
||||
* Runtime exception thrown when one tries to access the root of an
|
||||
* empty tree.
|
||||
*/
|
||||
|
||||
public class EmptyTreeException extends RuntimeException {
|
||||
public EmptyTreeException(String err) {
|
||||
super(err);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user