error-object?
-- r7rs
Definition type-predicate
;
error-object?
(from vonuvoli
);not-error-object?
(from vonuvoli
);Procedure variants:
((error-object) -> (true))
error-object
;true
;((any) -> (false))
scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(error-object? obj)
Returns
#t
ifobj
is an object created byerror
or one of an implementation-defined set of objects. Otherwise, it returns#f
. The objects used to signal errors, including those which satisfy the predicatesfile-error?
andread-error?
, may or may not satisfyerror-object?
.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.
error-object
;true
;any
;false
;