* qt/Makfile.am:
[platform/upstream/dbus.git] / mono / DBusException.cs
1 namespace DBus
2 {
3   using System;
4   using System.Runtime.InteropServices;
5   
6   public class DBusException : ApplicationException 
7   {
8     internal DBusException (Error error) : base (error.Message) { 
9       error.Free();
10     }
11   }
12 }