(in-package #:portaCL) (define-condition not-implemented (error) () (:documentation "Condition for when an implementation has not been written, but not deliberately excluded. This is generally the default.")) (define-condition not-supported (error) () (:documentation "Condition for when something is deliberately not supported.")) (define-condition not-necessary () () (:documentation "Condition for when something is not necessary. E.g., setting this in an .ASD file will cause that particular component to load only if it exists, while preventing failure if it does not."))