Files
unisa_strutture_dati_2013_2014/exceptions/InvalidEntryException.java

22 lines
437 B
Java

package exceptions;
/**
* Thrown when a position is determined to be invalid.
* @author Roberto Tamassia, Michael Goodrich
*/
//Copyright (c) 2003 Brown University, Providence, RI
//Additional modifications and methods by xgiovio
public class InvalidEntryException extends RuntimeException {
public InvalidEntryException(String err) {
super(err);
}
public InvalidEntryException() {
super("Invalid Entry");
}
}