raise-continuable
-- r7rs
Definition procedure
;
raise-continuable
(from vonuvoli
);Procedure variants:
scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(raise-continuable obj)
Raises an exception by invoking the current exception handler on
obj
. The handler is called with the same dynamic environment as the call toraise-continuable
, except that: the current exception handler is the one that was in place when the handler being called was installed, and if the handler being called returns, then it will again become the current exception handler. If the handler returns, the values it returns become the values returned by the call toraise-continuable
.(with-exception-handler (lambda (con) (cond ((string? con) (display con)) (else (display "a warning has been issued"))) 42) (lambda () (+ (raise-continuable "should be a number") 23))) ; prints: should be a number ===> 65
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.