Files
unisa_strutture_dati_2013_2014/exceptions/EmpyStackException.java
2014-03-05 01:13:42 +01:00

15 lines
235 B
Java

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