data_structures_free
This commit is contained in:
13
net/datastructures/BoundaryViolationException.java
Normal file
13
net/datastructures/BoundaryViolationException.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package net.datastructures;
|
||||
|
||||
/**
|
||||
* Signals that the boundaries of a data structure have been illegally
|
||||
* traversed (e.g. past the end of a list).
|
||||
* @author Roberto Tamassia
|
||||
*/
|
||||
|
||||
public class BoundaryViolationException extends RuntimeException {
|
||||
public BoundaryViolationException (String message) {
|
||||
super (message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user