1 ;;;; SBCL-specific parts of the condition system, i.e. parts which
2 ;;;; don't duplicate/clobber functionality already provided by the
3 ;;;; cross-compilation host Common Lisp
5 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; This software is derived from the CMU CL system, which was
9 ;;;; written at Carnegie Mellon University and released into the
10 ;;;; public domain. The software is in the public domain and is
11 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
12 ;;;; files for more information.
14 (in-package "SB!KERNEL")
16 (define-condition simple-style-warning (simple-condition style-warning) ())
18 ;;; not sure this is the right place, but where else?
19 (defun style-warn (format-control &rest format-arguments)
20 (warn 'simple-style-warning
21 :format-control format-control
22 :format-arguments format-arguments))
24 (define-condition simple-type-error (simple-condition type-error) ())
26 (define-condition sb!kernel:layout-invalid (type-error)
29 (lambda (condition stream)
30 (format stream "Layout-invalid error in ~S:~@
31 Type test of class ~S was passed obsolete instance:~% ~S"
32 (condition-function-name condition)
33 (sb!kernel:class-proper-name (type-error-expected-type condition))
34 (type-error-datum condition)))))
36 (define-condition case-failure (type-error)
37 ((name :reader case-failure-name :initarg :name)
38 (possibilities :reader case-failure-possibilities :initarg :possibilities))
40 (lambda (condition stream)
41 (format stream "~@<~S fell through ~S expression. ~:_Wanted one of ~:S.~:>"
42 (type-error-datum condition)
43 (case-failure-name condition)
44 (case-failure-possibilities condition)))))
46 (define-condition simple-file-error (simple-condition file-error)())
47 (define-condition simple-program-error (simple-condition program-error)())
48 (define-condition simple-control-error (simple-condition control-error)())
50 ;;; This condition is signalled whenever we make a UNKNOWN-TYPE so that
51 ;;; compiler warnings can be emitted as appropriate.
52 (define-condition parse-unknown-type (condition)
53 ((specifier :reader parse-unknown-type-specifier :initarg :specifier)))