diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-01-20 09:37:14 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-20 10:11:54 +0000 |
commit | b2ae03b08b2901f9030b4c80870173fe810c9348 (patch) | |
tree | ea76e939d8763b9f2578ce82f2ec621049a5f914 /wizards | |
parent | 7140efd3e2ea9c25264ac9a513480a2586610af4 (diff) |
coverity#1326632 DE: Dropped or ignored exception
Change-Id: I3f31e3742d30e27697ab7431925fa2f411a65ade
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/report/ReportWizard.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/wizards/com/sun/star/wizards/report/ReportWizard.java b/wizards/com/sun/star/wizards/report/ReportWizard.java index 6a2acb29fe6f..7601787fd4d1 100644 --- a/wizards/com/sun/star/wizards/report/ReportWizard.java +++ b/wizards/com/sun/star/wizards/report/ReportWizard.java @@ -413,7 +413,10 @@ public class ReportWizard extends DatabaseObjectWizard implements XTextListener { a = Class.forName("com.sun.star.wizards.reportbuilder.ReportBuilderImplementation"); } - catch (ClassNotFoundException e) {} + catch (ClassNotFoundException e) + { + System.err.println("ReportBuilderImplementation is unavailable"); + } if (a != null) { try |