diff options
author | Bernard Normier <bernard@zeroc.com> | 2015-11-20 13:06:56 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2015-11-20 13:06:56 -0500 |
commit | f4357fa23e7c5980c9b6b85054a4e5d5ed66c7a1 (patch) | |
tree | 0ebbbb605c637539f49076183cfbc5420f159c77 /cpp/test/IceStorm/single/Subscriber.cpp | |
parent | Add missing LMDB dependencies (diff) | |
download | ice-f4357fa23e7c5980c9b6b85054a4e5d5ed66c7a1.tar.bz2 ice-f4357fa23e7c5980c9b6b85054a4e5d5ed66c7a1.tar.xz ice-f4357fa23e7c5980c9b6b85054a4e5d5ed66c7a1.zip |
Reworked IceStorm and IceGrid database error handling
Diffstat (limited to 'cpp/test/IceStorm/single/Subscriber.cpp')
-rw-r--r-- | cpp/test/IceStorm/single/Subscriber.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceStorm/single/Subscriber.cpp b/cpp/test/IceStorm/single/Subscriber.cpp index 5df1b5be2cf..8342e4ee1ee 100644 --- a/cpp/test/IceStorm/single/Subscriber.cpp +++ b/cpp/test/IceStorm/single/Subscriber.cpp @@ -133,7 +133,7 @@ run(int, char* argv[], const CommunicatorPtr& communicator) manager->create(string(512, 'A')); test(false); } - catch(const IceStorm::InvalidTopic&) + catch(const Ice::UnknownException&) { } } @@ -160,7 +160,7 @@ run(int, char* argv[], const CommunicatorPtr& communicator) topic->subscribeAndGetPublisher(IceStorm::QoS(), object); test(false); } - catch(const IceStorm::InvalidSubscriber&) + catch(const Ice::UnknownException&) { } } |