summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-03-18 21:37:56 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-03-18 21:37:56 +0000
commitaf995856181cef8585f2181b127e911f6b569c2c (patch)
tree23df83bd56b60b05981a9e1660fc4561bb40a387
parent18e6cdf7f5ae7318ca258664a196f00dc0e34cd2 (diff)
downloadATCD-af995856181cef8585f2181b127e911f6b569c2c.tar.gz
ChangeLogTag:Sun Mar 18 13:30:00 2001 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a8
-rw-r--r--TAO/tao/Exception.cpp4
2 files changed, 10 insertions, 2 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index d4ca7f236e2..b760d628baa 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,11 @@
+Sun Mar 18 13:30:00 2001 Ossama Othman <ossama@uci.edu>
+
+ * tao/Exception.cpp (_info):
+
+ Fixed _is_a() call on CORBA::BAD_PARAM() exception. The
+ repository ID passed to the _is_a() call was missing the
+ version.
+
Sun Mar 18 11:50:57 2001 Ossama Othman <ossama@uci.edu>
* tao/Exception.cpp (_info):
diff --git a/TAO/tao/Exception.cpp b/TAO/tao/Exception.cpp
index 256fb062662..036c75daecf 100644
--- a/TAO/tao/Exception.cpp
+++ b/TAO/tao/Exception.cpp
@@ -567,7 +567,7 @@ CORBA_SystemException::_info (void) const
CORBA::ULong minor_code = this->minor () & 0xFFFU;
- if (this->_is_a ("IDL:omg.org/CORBA/BAD_PARAM"))
+ if (this->_is_a ("IDL:omg.org/CORBA/BAD_PARAM:1.0"))
{
switch (minor_code)
@@ -575,7 +575,7 @@ CORBA_SystemException::_info (void) const
case TAO_OMG_MINOR_BAD_PARAM_10:
minor_description =
"string_to_object conversion failed due "
- "to non specific reason";
+ "to non-specific reason";
break;
default:
break;