Initial checkin
Annotate for file /conditions.lisp
2009-07-17 pix 1 (in-package #:portaCL)
05:24:52 ' 2
' 3 (define-condition not-implemented (error) ()
' 4 (:documentation "Condition for when an implementation has not been written,
' 5 but not deliberately excluded. This is generally the default."))
' 6
' 7 (define-condition not-supported (error) ()
' 8 (:documentation "Condition for when something is deliberately not
' 9 supported."))
' 10
' 11 (define-condition not-necessary () ()
' 12 (:documentation "Condition for when something is not necessary. E.g., setting
' 13 this in an .ASD file will cause that particular component to load only if it
' 14 exists, while preventing failure if it does not."))