mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-22 12:30:08 +01:00
13 lines
232 B
C#
13 lines
232 B
C#
|
|
namespace DBus
|
||
|
|
{
|
||
|
|
using System;
|
||
|
|
using System.Runtime.InteropServices;
|
||
|
|
|
||
|
|
public class DBusException : ApplicationException
|
||
|
|
{
|
||
|
|
internal DBusException (Error error) : base (error.Message) {
|
||
|
|
error.Free();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|