Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
simple-0.5.5
Description
Related thread: http://mail-archives.apache.org/mod_mbox/incubator-odf-dev/201203.mbox/%3C20120322183411.573B.60BA733C@jeremias-maerki.ch%3E
Executive summary: OdfPackage does too much exception catching causing real problems not being detected by client programs (because the exceptions are only logged). Similar patterns were observed when reading an ODF package. The attached patch tries to introduce a better exception handling throughout the OdfPackage class. Instead of throwing Exception, methods now throw IOException and SAXException. The existing load-side fault tolerance is preserved but the client can now abort processing if a potentially bad ODF file is read because exceptions thrown in the ErrorHandlers are no longer swallowed.
I hope you find the proposed changes useful. They are backed by unit tests.