]> git.meshlink.io Git - catta/blobdiff - avahi-sharp/ClientException.cs
get rid of a lot of old svn cruft
[catta] / avahi-sharp / ClientException.cs
index fadcce91f2a18241b7718eb6cc638fd09304ba29..0f511accec5abbebba3a83e971b511826f6e0f59 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /***
   This file is part of avahi.
 
@@ -95,14 +93,14 @@ namespace Avahi
             this.code = code;
         }
     }
-    
+
     public class ClientException : ApplicationException
     {
         private ErrorCode code;
 
         [DllImport ("avahi-common")]
         private static extern IntPtr avahi_strerror (ErrorCode code);
-        
+
         public ErrorCode ErrorCode
         {
             get { return code; }
@@ -110,7 +108,7 @@ namespace Avahi
 
         internal ClientException (int code) : this ((ErrorCode) code) {
         }
-        
+
         internal ClientException (ErrorCode code) : base (GetErrorString (code))
         {
             this.code = code;