diff options
Diffstat (limited to 'shell/Evolution-ShellComponent.idl')
-rw-r--r-- | shell/Evolution-ShellComponent.idl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/Evolution-ShellComponent.idl b/shell/Evolution-ShellComponent.idl index ed62d8812c..f2e7e22ee8 100644 --- a/shell/Evolution-ShellComponent.idl +++ b/shell/Evolution-ShellComponent.idl @@ -48,13 +48,15 @@ module Evolution { /* FIXME: We might want more exceptions here. */ exception NotFound {}; exception UnsupportedType {}; + exception UnsupportedSchema {}; exception InternalError {}; Bonobo::Control createView (in string physical_uri, in string type) raises (NotFound, UnsupportedType, InternalError); - void handleExternalURI (in string external_uri); + void handleExternalURI (in string external_uri) + raises (NotFound, UnsupportedSchema, InternalError); exception Busy {}; |