public class LispException extends Exception{ final static LispException typeerr=new LispException("Illegal type of arguments"); LispException(){ super(); } LispException(String s){ super(s); } }