Creato Parzialmente la Queue

This commit is contained in:
2014-03-10 16:36:55 +01:00
parent 84aa1374c7
commit 0759ac55e6
4 changed files with 133 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package exceptions;
/**
* Created with MONSTER.
* User: xgiovio
* Date: 05/03/14
* Time: 0.09
*/
public class EmpyQueueException extends RuntimeException {
public EmpyQueueException(){
super("Queue Empty");
}
}