Index: ./docs/index.html
===================================================================
RCS file: /home/cvspublic/jakarta-ant/docs/index.html,v
retrieving revision 1.92
diff -r1.92 index.html
839a840
>   <li><a href="#exit">Exit</a></li>
1653a1655,1689
> <hr>
> <h2><a name="exit">Exit</a></h2>
> <h3>Description</h3>
> <p>Exits the current build (just throwing a BuildException), optionally printing additional information.</p>
> <h3>Parameters</h3>
> <table border="1" cellpadding="2" cellspacing="0">
>   <tr>
>     <td valign="top"><b>Attribute</b></td>
>     <td valign="top"><b>Description</b></td>
>     <td align="center" valign="top"><b>Required</b></td>
>   </tr>
>   <tr>
>     <td valign="top">message</td>
>     <td valign="top">A message giving further information on why the build exited</td>
>     <td align="center" valign="top">No</td>
>   </tr>
> </table>
> <h3>Examples</h3>
> <pre>  &lt;exit/&gt;</pre>
> <p>will exit the current build with no further information given.
> <pre>
> BUILD FAILED
> 
> build.xml:4: No message
> </pre>
> </p>
> <pre>  &lt;exit message=&quot;Something wrong here.&quot;/&gt;</pre>
> <p>will exit the current build and print something like the following to whereever
> your output goes:
> <pre>
> BUILD FAILED
> 
> build.xml:4: Something wrong here.
> </pre>
> </p>

The command completed successfully.
