diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-11-15 15:44:18 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-11-15 15:44:18 +0000 |
commit | c05524846b150939533c36d46f6a250ef3ec6fe7 (patch) | |
tree | fbb3b0a09cbecba97bd8f4e6adcccc9b9646bee2 /cs/demo/IceStorm/clock/Subscriber.cs | |
parent | Bug 1547 (diff) | |
download | ice-c05524846b150939533c36d46f6a250ef3ec6fe7.tar.bz2 ice-c05524846b150939533c36d46f6a250ef3ec6fe7.tar.xz ice-c05524846b150939533c36d46f6a250ef3ec6fe7.zip |
Fixed Windows errors
Diffstat (limited to 'cs/demo/IceStorm/clock/Subscriber.cs')
-rwxr-xr-x | cs/demo/IceStorm/clock/Subscriber.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cs/demo/IceStorm/clock/Subscriber.cs b/cs/demo/IceStorm/clock/Subscriber.cs index 1e44f90ba64..2dffd6ba65f 100755 --- a/cs/demo/IceStorm/clock/Subscriber.cs +++ b/cs/demo/IceStorm/clock/Subscriber.cs @@ -55,13 +55,13 @@ public class Subscriber : Ice.Application { topic = manager.retrieve(topicName); } - catch(IceStorm.NoSuchTopic e) + catch(IceStorm.NoSuchTopic) { try { topic = manager.create(topicName); } - catch(IceStorm.TopicExists ex) + catch(IceStorm.TopicExists) { Console.WriteLine("temporary error. try again."); return 1; |