summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>1999-09-15 15:16:05 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>1999-09-15 15:16:05 +0000
commit62baac9fec0adb2a34d66ca6053ec45306af9396 (patch)
tree6103b6ac4a5029a008d21ad4a713c771ad4c550b /docs
parentab88fde924a9913aef3bc4b33e7a228e3a032452 (diff)
downloadATCD-62baac9fec0adb2a34d66ca6053ec45306af9396.tar.gz
ChangeLogTag:Wed Sep 15 10:14:21 1999 Ossama Othman <othman@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 0994d75aff4..ec29d8fe778 100644
--- a/docs/exceptions.html
+++ b/docs/exceptions.html
@@ -246,7 +246,7 @@ macros discussed here.
.
.
if (whatever)
- ACE_TRY_THROW (CORBA::BadParam);
+ ACE_TRY_THROW (CORBA::BAD_PARAM ());
some_other_operation (arg1, arg2, arg3, ACE_TRY_ENV);
ACE_TRY_CHECK;
@@ -256,7 +256,7 @@ macros discussed here.
{
// error handling.
if (still_has_error)
- ACE_TRY_THROW (CORBA::NOWAY);
+ ACE_TRY_THROW (CORBA::NOWAY ());
}
ACE_CATCHANY
{