data_structures_free
This commit is contained in:
10
net/datastructures/InvalidEntryException.java
Normal file
10
net/datastructures/InvalidEntryException.java
Normal file
@@ -0,0 +1,10 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user