Artifact ed46507c594c0b9f8f70500d527a6715ea0e1c6e304e05ad5ce4b85dd50bb51b:
- Executable file
r37/lisp/csl/jlisp/LispException.java
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 538) [annotate] [blame] [check-ins using] [more...]
// // This file is part of the Jlisp implementation of Standard Lisp // Copyright \u00a9 (C) Codemist Ltd, 1998-2000. // class LispException extends Exception { LispObject details; String message; LispException() { this.message = "unknown"; this.details = Jlisp.nil; } LispException(String message) { this.message=message; this.details=null; } LispException(String message, LispObject details) { this.message = message; this.details = details; } }