1 21 22 package org.armedbear.lisp; 23 24 public class ParseError extends LispError 25 { 26 public ParseError(String message) 27 { 28 super(message); 29 } 30 31 public ParseError(LispObject initArgs) throws ConditionThrowable 32 { 33 super(initArgs); 34 } 35 36 public LispObject typeOf() 37 { 38 return Symbol.PARSE_ERROR; 39 } 40 41 public LispClass classOf() 42 { 43 return BuiltInClass.PARSE_ERROR; 44 } 45 46 public LispObject typep(LispObject type) throws ConditionThrowable 47 { 48 if (type == Symbol.PARSE_ERROR) 49 return T; 50 if (type == BuiltInClass.PARSE_ERROR) 51 return T; 52 return super.typep(type); 53 } 54 } 55 | Popular Tags |