diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-07-02 03:03:41 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-07-02 03:03:41 +0000 |
commit | 0e959a7bc8a0931ecad487062d418c0c729b6ae2 (patch) | |
tree | c2126f669e31826684761055eb240e33aa98c963 /TAO/tao/Exception.cpp | |
parent | ff8af837b0a7ec7238c6b04869deac6a8ab46299 (diff) | |
download | ATCD-0e959a7bc8a0931ecad487062d418c0c729b6ae2.tar.gz |
Added some minor codes for the CORBA::INV_OBJREF() system
exception to aid in pin-pointing object reference related
exceptions.
Diffstat (limited to 'TAO/tao/Exception.cpp')
-rw-r--r-- | TAO/tao/Exception.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/TAO/tao/Exception.cpp b/TAO/tao/Exception.cpp index 0fe70aec6f5..ac157dae9c2 100644 --- a/TAO/tao/Exception.cpp +++ b/TAO/tao/Exception.cpp @@ -329,6 +329,15 @@ CORBA_SystemException::_tao_print_system_exception (FILE *) const case TAO_INVOCATION_RECV_REQUEST_MINOR_CODE: location = "failed to recv request response"; break; + case TAO_CONNECTOR_REGISTRY_NO_USABLE_PROTOCOL: + location = "all protocols failed to parse the IOR"; + break; + case TAO_NULL_POINTER_MINOR_CODE: + location = "attempt to use null pointer"; + break; + case TAO_MPROFILE_CREATION_ERROR: + location = "error during MProfile creation"; + break; default: location = "unknown location"; } |