Files
unisa_strutture_dati_2013_2014/exceptions/EmptyDequeException.java

18 lines
306 B
Java

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