From 32c4df4977b1c6fae62497de544b8e1538ca80d2 Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Thu, 27 Sep 2001 11:08:03 +0000 Subject: added InvalidURI and UnsupportedMethod exceptions to the CalFactory 2001-09-27 Rodrigo Moya * idl/evolution-calendar.idl: added InvalidURI and UnsupportedMethod exceptions to the CalFactory interface * pcs/cal-factory.c (impl_CalFactory_open): raise InvalidURI exception on URI errors and UnsupportedMethod when we don't support the method for a given URI 2001-09-26 Rodrigo Moya * cal-client/cal-client.c: added support for using multiple calendar factories (cal_client_uri_list): use the list of factories loaded for this CalClient svn path=/trunk/; revision=13189 --- calendar/idl/evolution-calendar.idl | 2 ++ 1 file changed, 2 insertions(+) (limited to 'calendar/idl') diff --git a/calendar/idl/evolution-calendar.idl b/calendar/idl/evolution-calendar.idl index df9b7ecf57..fe3c710cbc 100644 --- a/calendar/idl/evolution-calendar.idl +++ b/calendar/idl/evolution-calendar.idl @@ -283,6 +283,8 @@ module Calendar { /* A calendar factory, can load and create calendars */ interface CalFactory : Bonobo::Unknown { exception NilListener {}; + exception InvalidURI {}; + exception UnsupportedMethod {}; /* Open a calendar from an URI */ void open (in string uri, in boolean only_if_exists, in Listener listener) -- cgit