Files
unisa_strutture_dati_2013_2014/exceptions/EmptyQueueException.java

15 lines
236 B
Java

package exceptions;
/**
* Created with MONSTER.
* User: xgiovio
* Date: 05/03/14
* Time: 0.09
*/
public class EmptyQueueException extends RuntimeException {
public EmptyQueueException(){
super("Queue Empty");
}
}