00001 namespace DBus 00002 { 00003 using System; 00004 using System.Runtime.InteropServices; 00005 00006 public class DBusException : ApplicationException 00007 { 00008 internal DBusException (Error error) : base (error.Message) { 00009 error.Free(); 00010 } 00011 } 00012 }