mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-22 02:00:10 +01:00
12 lines
232 B
C#
12 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();
|
|
}
|
|
}
|
|
}
|