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