diff options
author | Bernard Normier <bernard@zeroc.com> | 2014-10-28 18:04:53 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2014-10-28 18:04:53 -0400 |
commit | f6d752435e0a6988437135af107f7f0bc142a1c9 (patch) | |
tree | 18f77eacee8ab0e761fcadfa9a34cd45bf0ac7d3 /cs/src/Ice/ObjectAdapterFactory.cs | |
parent | Fixed IceStorm single test (diff) | |
download | ice-f6d752435e0a6988437135af107f7f0bc142a1c9.tar.bz2 ice-f6d752435e0a6988437135af107f7f0bc142a1c9.tar.xz ice-f6d752435e0a6988437135af107f7f0bc142a1c9.zip |
createObjectAdapter now raises CommunicatorDestroyedException if the communicator is destroyed, instead of ObjectAdapterDeactivatedException (C++ and C#); Java done in earlier commit.
Diffstat (limited to 'cs/src/Ice/ObjectAdapterFactory.cs')
-rw-r--r-- | cs/src/Ice/ObjectAdapterFactory.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cs/src/Ice/ObjectAdapterFactory.cs b/cs/src/Ice/ObjectAdapterFactory.cs index 0b9cdb2a914..1fcb657b28c 100644 --- a/cs/src/Ice/ObjectAdapterFactory.cs +++ b/cs/src/Ice/ObjectAdapterFactory.cs @@ -141,7 +141,7 @@ namespace IceInternal { if(instance_ == null) { - throw new Ice.ObjectAdapterDeactivatedException(); + throw new Ice.CommunicatorDestroyedException(); } Ice.ObjectAdapterI adapter = null; |