Changeset 12849
- Timestamp:
- 08/02/10 06:07:45 (13 years ago)
- Location:
- trunk/abcl/src/org/armedbear/lisp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/Java.java
r12826 r12849 1202 1202 } 1203 1203 catch (OutOfMemoryError oom) { 1204 return error(new StorageCondition("Out of memory ."));1204 return error(new StorageCondition("Out of memory " + oom.getMessage())); 1205 1205 } 1206 1206 catch (StackOverflowError oos) { -
trunk/abcl/src/org/armedbear/lisp/Lisp.java
r12826 r12849 278 278 catch (OutOfMemoryError e) 279 279 { 280 return error(new LispError("Out of memory."));280 return error(new StorageCondition("Out of memory " + e.getMessage())); 281 281 } 282 282 catch (StackOverflowError e)
Note: See TracChangeset
for help on using the changeset viewer.