Implementato alcuni esercizi

This commit is contained in:
2014-04-14 01:11:38 +02:00
parent cafb12ea9f
commit b22cd894c1
5 changed files with 433 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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 NotEnoughElements extends RuntimeException {
public NotEnoughElements(String err) {
super(err);
}
public NotEnoughElements() {
super("NotEnoughElements");
}
}