summaryrefslogtreecommitdiff
path: root/mono/DBusException.cs
blob: 41df7be0d7d5d8ab769c106b3b9cb01b9658b327 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace DBus
{
  using System;
  using System.Runtime.InteropServices;
  
  public class DBusException : ApplicationException 
  {
    internal DBusException (Error error) : base (error.Message) { 
      error.Free();
    }
  }
}