diff options
author | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-25 17:30:23 +0000 |
---|---|---|
committer | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-25 17:30:23 +0000 |
commit | d04f5ee8a06877f285eadcde333237114460277d (patch) | |
tree | d6cfb12575a5ca7f62de6c75a343b041f334a82b /docs | |
parent | 0c7c7324ce197a41c582c6ef2144d22a14afb5d6 (diff) | |
download | ATCD-d04f5ee8a06877f285eadcde333237114460277d.tar.gz |
Corrected a few links..
Diffstat (limited to 'docs')
-rw-r--r-- | docs/exceptions.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/exceptions.html b/docs/exceptions.html index f7060fd9787..4d7112f0b05 100644 --- a/docs/exceptions.html +++ b/docs/exceptions.html @@ -178,7 +178,7 @@ try macros. <li><P>Throw an exception within a <code>ACE_TRY</code> block or <code>ACE_CATCH</code> block using - <a href="#try_throw"><code>ACE_TRY_THROW</code></a>. + <a href="#ace_try"><code>ACE_TRY_THROW</code></a>. </p> </LI> </ul> @@ -205,6 +205,7 @@ macros discussed here. <ul>Examples on using ACE try macros: <li><p> <pre> + <a name="try_env"> ACE_TRY // Use ACE_DECLARE_NEW_CORBA_ENV to create ACE_TRY_ENV // if you got undefined symbol warning here. { @@ -219,6 +220,7 @@ macros discussed here. some_other_operation (arg1, arg2, arg3, ACE_TRY_ENV); ACE_TRY_CHECK; } + <a name="ace_try"> ACE_CATCH (CORBA_some_exception, ex) { // error handling. |