summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/doc/objstor.cxx15
1 files changed, 13 insertions, 2 deletions
diff --git a/sfx2/source/doc/objstor.cxx b/sfx2/source/doc/objstor.cxx
index cee35fc3443c..e657ca6dad1c 100644
--- a/sfx2/source/doc/objstor.cxx
+++ b/sfx2/source/doc/objstor.cxx
@@ -2486,8 +2486,19 @@ bool SfxObjectShell::ExportTo( SfxMedium& rMedium )
}
return xFilter->filter( aArgs );
- }catch(...)
- {}
+ }
+ catch (const css::uno::RuntimeException & e)
+ {
+ SAL_INFO("sfx.doc", "ExportTo: " << e);
+ }
+ catch (const std::exception & e)
+ {
+ SAL_INFO("sfx.doc", "ExportTo: " << e.what());
+ }
+ catch(...)
+ {
+ SAL_INFO("sfx.doc", "ExportTo: Unknown exception!");
+ }
}
return false;