Changeset 6269
- Timestamp:
- Apr 15, 2007, 11:36:59 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-1/l1-error-system.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-1/l1-error-system.lisp
r5529 r6269 82 82 (define-condition stack-overflow-condition (simple-storage-condition)) 83 83 84 (define-condition invalid-memory-access (storage-condition) 85 ((address :initarg :address) 86 (write-p :initform nil :initarg :write-p)) 87 (:report (lambda (c s) 88 (with-slots (address write-p) c 89 (format s "Illegal memory ~a address #x~x" (if write-p "write to" "read of") address))))) 90 84 91 (define-condition type-error (error) 85 92 ((datum :initarg :datum)
Note:
See TracChangeset
for help on using the changeset viewer.
