aboutsummaryrefslogtreecommitdiff
path: root/src/freedesktop-interfaces.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/freedesktop-interfaces.vala')
-rw-r--r--src/freedesktop-interfaces.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/freedesktop-interfaces.vala b/src/freedesktop-interfaces.vala
index 2da88e5..f62fae4 100644
--- a/src/freedesktop-interfaces.vala
+++ b/src/freedesktop-interfaces.vala
@@ -19,7 +19,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
[DBus (name = "org.freedesktop.DBus")]
public interface FreeDesktopObject: Object {
- public abstract async string[] list_names() throws IOError;
+ public abstract async string[] list_names() throws GLib.DBusError, GLib.IOError;
public abstract signal void name_owner_changed ( string name,
string old_owner,
string new_owner );
@@ -27,7 +27,7 @@ public interface FreeDesktopObject: Object {
[DBus (name = "org.freedesktop.DBus.Introspectable")]
public interface FreeDesktopIntrospectable: Object {
- public abstract string Introspect() throws IOError;
+ public abstract string Introspect() throws GLib.DBusError, GLib.IOError;
}
[DBus (name = "org.freedesktop.DBus.Properties")]