Introduction
  Publishing web pages
  RXML
  Information tags
  String tags
  Variable tags
  URL tags
  If tags
  Graphics tags
  Database tags
  LDAP
  Programming tags
    <catch>
    <throw>
    <cgi>
    <crypt>
    <debug>
    <default>
    <for>
    <gauge>
    <nooutput>
    <noparse>
    <pike>
    <random>
    <realfile>
    <scope>
    <sed>
    <strlen>
    <trace>
    <vfs>
    <wizard>
  SSI tags
  Image maps
  IntraSeek
  LogView
  Templates
  Navigation
  SiteBuilder tags
  Supports system
  Security
  Appendix
 
<throw> </> Main RXML parser

 

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