Changeset 13146
- Timestamp:
- 01/14/11 09:43:43 (12 years ago)
- Location:
- trunk/abcl/src/org/armedbear/lisp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/IntegrityError.java
r13143 r13146 34 34 package org.armedbear.lisp; 35 35 36 /** This error is invoked in situations where the code can't continue 37 * because some precondition isn't met, although it's not an assertion 38 * error per se. 39 */ 36 40 public class IntegrityError extends Error 37 41 { -
trunk/abcl/src/org/armedbear/lisp/ProcessingTerminated.java
r13143 r13146 34 34 package org.armedbear.lisp; 35 35 36 /** This error is thrown when the EXT:EXIT or EXT:QUIT function 37 * is being invoked. In the stand-alone case, it terminates the 38 * entire JVM, if caught in Interpreter.run(). 39 * 40 * In the embedding case, it's up to the embedder what to do with it. 41 */ 36 42 public class ProcessingTerminated extends Error 37 43 {
Note: See TracChangeset
for help on using the changeset viewer.