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
commit66baf63b81804af1389e74eb4635b1677dfa2690 (patch)
tree6103b6ac4a5029a008d21ad4a713c771ad4c550b /docs
parentf59e1772a23bdf4cb4bff938bc307e6387312cf3 (diff)
downloadATCD-66baf63b81804af1389e74eb4635b1677dfa2690.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
{