Handbook
Glossary
throw-continue ( error -- )
Factor handbook
»
The language
»
Exception handling
»
Restartable errors
Prev:
rethrow-restarts ( error restarts -- restart )
Next:
restarts
Vocabulary
continuations
Inputs
error
an
object
Outputs
None
Word description
Throws a resumable error. If the user elects to continue execution, this word returns normally.
See also
throw
,
rethrow
,
throw-restarts
,
rethrow-restarts
Definition
USING:
kernel
;
IN:
continuations
:
throw-continue
( error -- )
{
{
"Continue"
t
}
}
throw-restarts
drop
;