make-condition-type

[procedure] make-condition-type id parent field-names

SRFI-35: Returns a new condition type. id is a symbol as the name of the condition type. parent is the parent condition type. field-names are a list of symbols for the condition's fields.

A condition can be instantiated by make-condition.

See also define-condition-type.