From 908e491f7d55209acfbb2595ab1ef5b24502d641 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 25 Jun 2010 03:10:32 +0200 Subject: get rid of a lot of old svn cruft --- avahi-sharp/ClientException.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'avahi-sharp/ClientException.cs') 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; -- cgit