This tag throws an exception, with the enclosed text as the error
message. The RXML parsing will stop at the <throw> tag.
Has a close relation to the <catch> tag.
Example
<catch>
<set variable=foo value=Hi>
<throw>Error dude.</throw>
<set variable=foo value=Bye>
</catch>
<p><insert variable=foo>
Error dude.
Hi
|