diff options
Diffstat (limited to 'shell/Evolution-Shell.idl')
-rw-r--r-- | shell/Evolution-Shell.idl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/Evolution-Shell.idl b/shell/Evolution-Shell.idl index 0426c037b0..b99f49abab 100644 --- a/shell/Evolution-Shell.idl +++ b/shell/Evolution-Shell.idl @@ -20,6 +20,7 @@ module Evolution { exception NotFound {}; exception UnsupportedSchema {}; exception InvalidURI {}; + exception InternalError {}; exception Busy {}; typedef sequence<string> FolderTypeNameList; @@ -43,7 +44,7 @@ module Evolution { * Return value: the new view. */ ShellView createNewView (in string uri) - raises (NotFound, UnsupportedSchema, InvalidURI); + raises (NotFound, UnsupportedSchema, InvalidURI, InternalError); /** * handleURI: @@ -55,7 +56,7 @@ module Evolution { * the message composer.) */ void handleURI (in string uri) - raises (NotFound, UnsupportedSchema, InvalidURI); + raises (NotFound, UnsupportedSchema, InvalidURI, InternalError); /** * selectUserFolder: |