diff options
author | JP Rosevear <jpr@ximian.com> | 2003-05-16 22:35:08 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-05-16 22:35:08 +0800 |
commit | 89140b1640d11748535776c84ab2df4b21052c68 (patch) | |
tree | cd48fd6836b9a1b64c331e1de9b509969d52a8f3 /calendar/idl | |
parent | 53d468e6145e8b89085a646ca42d992d9852dfb8 (diff) | |
download | gsoc2013-evolution-89140b1640d11748535776c84ab2df4b21052c68.tar.gz gsoc2013-evolution-89140b1640d11748535776c84ab2df4b21052c68.tar.zst gsoc2013-evolution-89140b1640d11748535776c84ab2df4b21052c68.zip |
Fixes #41930
2003-05-15 JP Rosevear <jpr@ximian.com>
Fixes #41930
* idl/evolution-calendar.idl: Make sure everything that can raise
a NotFound exception lists it
svn path=/trunk/; revision=21207
Diffstat (limited to 'calendar/idl')
-rw-r--r-- | calendar/idl/evolution-calendar.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/idl/evolution-calendar.idl b/calendar/idl/evolution-calendar.idl index d13247d250..15b27e806a 100644 --- a/calendar/idl/evolution-calendar.idl +++ b/calendar/idl/evolution-calendar.idl @@ -200,7 +200,7 @@ module Calendar { * structures themselves. */ CalComponentAlarmsSeq getAlarmsInRange (in Time_t start, in Time_t end) - raises (InvalidRange); + raises (NotFound, InvalidRange); /* Returns free/busy objects for the given interval */ CalObjSeq getFreeBusy (in UserList users, in Time_t start, in Time_t end) @@ -233,7 +233,7 @@ module Calendar { * updated version. */ void updateObjects (in CalObj calobj, in CalObjModType mod) - raises (InvalidObject, PermissionDenied); + raises (NotFound, InvalidObject, PermissionDenied); /* Removes a component */ void removeObject (in CalObjUID uid, in CalObjModType mod) |