11 lines
252 B
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);
|
|
}
|
|
}
|