Files
net_datastructures_5_sel_so…/net/datastructures/InvalidEntryException.java

11 lines
252 B
Java

package net.datastructures;
/**
* Thrown when an entry is discovered to be invalid.
* @author Eric Zamore
*/
public class InvalidEntryException extends RuntimeException {
public InvalidEntryException (String message) {
super (message);
}
}