Rebol Programming/throw
USAGE:
editTHROW value /name word
DESCRIPTION:
editThrows control back to a previous catch.
THROW is a native value.
ARGUMENTS
edit- value -- Value returned from catch (Type: any-type)
REFINEMENTS
edit- /name -- Throws to a named catch.
- word -- (Type: word)
SOURCE CODE
editthrow: native[ "Throws control back to a previous catch." value [any-type!] "Value returned from catch" /name "Throws to a named catch." word [word!] ]