summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2002-06-19 20:54:55 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2002-06-19 20:54:55 +0000
commit6416c2cb7f910f1baadf7b49b9787faea65fab28 (patch)
treec751e82cb4c8ff9ad82023c681e0065cc4e8521c /docs
parentba3a8ae14e937bf7e378ad292100580a01b38a95 (diff)
downloadATCD-6416c2cb7f910f1baadf7b49b9787faea65fab28.tar.gz
ChangeLogTag:Wed Jun 19 06:50:54 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
Diffstat (limited to 'docs')
-rw-r--r--docs/exceptions.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/exceptions.html b/docs/exceptions.html
index ff95176ace3..cae40a2bb21 100644
--- a/docs/exceptions.html
+++ b/docs/exceptions.html
@@ -298,7 +298,7 @@ macros.
exception support. You can not access the caught
exception within the <code>ACE_CATCHALL</code> block.</p>
- <li><P>Use <code>ACE_RETHROW</code> to rethrow the same exception
+ <li><P>Use <code>ACE_RE_THROW</code> to rethrow the same exception
within a <code>ACE_CATCH</code> or
<code>ACE_CATCHANY</code> block.
</p>
@@ -385,7 +385,7 @@ macros discussed here.
{
// error handling.
// then rethow the exception.
- ACE_RETHROW;
+ ACE_RE_THROW;
}
ACE_ENDTRY;
ACE_CHECK;