summaryrefslogtreecommitdiffstats
path: root/avahi-sharp/ClientException.cs
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-06-25 03:10:32 +0200
committerLennart Poettering <lennart@poettering.net>2010-06-25 03:11:20 +0200
commit908e491f7d55209acfbb2595ab1ef5b24502d641 (patch)
treee3922a11db074e6a99045797cf9c1c69fe23f738 /avahi-sharp/ClientException.cs
parent2b2844b10d7b7e5c97f9c667d664d9418bb7769a (diff)
get rid of a lot of old svn cruft
Diffstat (limited to 'avahi-sharp/ClientException.cs')
-rw-r--r--avahi-sharp/ClientException.cs8
1 files changed, 3 insertions, 5 deletions
diff --git a/avahi-sharp/ClientException.cs b/avahi-sharp/ClientException.cs
index fadcce9..0f511ac 100644
--- a/avahi-sharp/ClientException.cs
+++ b/avahi-sharp/ClientException.cs
@@ -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;