Changeset 13146


Ignore:
Timestamp:
01/14/11 09:43:43 (12 years ago)
Author:
ehuelsmann
Message:

Add class documentation for recently added classes.

Location:
trunk/abcl/src/org/armedbear/lisp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/IntegrityError.java

    r13143 r13146  
    3434package org.armedbear.lisp;
    3535
     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 */
    3640public class IntegrityError extends Error
    3741{
  • trunk/abcl/src/org/armedbear/lisp/ProcessingTerminated.java

    r13143 r13146  
    3434package org.armedbear.lisp;
    3535
     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 */
    3642public class ProcessingTerminated extends Error
    3743{
Note: See TracChangeset for help on using the changeset viewer.