diff options
author | fcolin | 2007-02-01 10:03:14 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 10:03:14 +0000 |
commit | 20dc938ef6a5ea0eec354ef35439f2f67c77b34a (patch) | |
tree | 0de0ea0b3fec277bf14565f8a9b1306d91c76771 /CSharp | |
parent | b10f09ff4c6265700560fbcdf322bc17e683c155 (diff) | |
download | ivy-csharp-20dc938ef6a5ea0eec354ef35439f2f67c77b34a.zip ivy-csharp-20dc938ef6a5ea0eec354ef35439f2f67c77b34a.tar.gz ivy-csharp-20dc938ef6a5ea0eec354ef35439f2f67c77b34a.tar.bz2 ivy-csharp-20dc938ef6a5ea0eec354ef35439f2f67c77b34a.tar.xz |
Utilisateur : Fcolin Date : 4/11/03 Heure : 18:07 Archivé dans $/EScribe/Ivy Commentaire: (vss 5)
Diffstat (limited to 'CSharp')
-rw-r--r-- | CSharp/Ivy/IvyPPC/IvyWatcher.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyWatcher.cs b/CSharp/Ivy/IvyPPC/IvyWatcher.cs index 1815a04..d14b67b 100644 --- a/CSharp/Ivy/IvyPPC/IvyWatcher.cs +++ b/CSharp/Ivy/IvyPPC/IvyWatcher.cs @@ -125,6 +125,12 @@ namespace IvyBus Console.Error.WriteLine("can't connect to " + remotehost + " port " + port + " \n"+ e.Message);
}
}
+ catch (ThreadInterruptedException te)
+ {
+ Console.Error.WriteLine( te.Message );
+ Console.Error.WriteLine( te.StackTrace);
+ running = false;
+ }
catch (IOException jii)
{
running = false;
|