data_structures_free

This commit is contained in:
2014-03-24 18:47:50 +01:00
commit 6f92828c96
65 changed files with 4738 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package net.datastructures;
/**
* Thrown when a position is determined to be invalid.
* @author Roberto Tamassia, Michael Goodrich
*/
//begin#fragment InvalidPositionException
// A run-time exception for invalid positions
public class InvalidPositionException extends RuntimeException {
public InvalidPositionException(String err) {
super(err);
}
//end#fragment InvalidPositionException
public InvalidPositionException() {
/* default constructor */
}
//begin#fragment InvalidPositionException
}
//end#fragment InvalidPositionException