The
throw
accessor is used to throw an exception.
When used, the
throw
accessor throws a canonical exception
document conforming to the follow structure, supplied as the
operand
parameter.
<ex>
<id>Anything you like to identify your exception</id>
<message>A message decscribing the exception</message>
</ex>
Exceptions are caught in a DPML
<exception>
block where they can be processed just like any other document.
A thrown exception is accessed with the
this:exception
URI.
When an exception is thrown, execution switches to the nearest exception block.
If no exception block is found
in the current instruction block it flows out to any outer blocks.
If the exception is not caught in the
current process it is returned as the response document of the process.
Any parent calling process is again checked for exception handling blocks.