Changeset 13091
- Timestamp:
- 12/11/10 23:19:21 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/Interpreter.java
r13090 r13091 472 472 return condition; 473 473 } 474 475 @Override 476 public String getMessage() { 477 String conditionText; 478 try { 479 conditionText = getCondition().writeToString(); 480 } catch (Throwable t) { 481 conditionText = "<error printing Lisp condition>"; 482 } 483 484 return "Unhandled lisp condition: " + conditionText; 485 } 486 487 474 488 }; 475 489
Note: See TracChangeset
for help on using the changeset viewer.