Implementazione parziale Priority Queue

This commit is contained in:
2014-04-01 18:10:49 +02:00
parent 56672f3b94
commit 9836790893
3 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package exceptions;
/**
* Signals that the boundaries of a data structure have been illegally
* traversed (e.g. past the end of a list).
* @author Roberto Tamassia
*/
//Copyright (c) 2003 Brown University, Providence, RI
//Additional modifications and methods by xgiovio
public class EmptyPriorityQueueException extends RuntimeException {
public EmptyPriorityQueueException(String message) {
super (message);
}
public EmptyPriorityQueueException() {
super ("EmptyPriorityQueueException");
}
}