Hi, I don't think there is a definite list of possible Exception-types besides what you get when you look at the code or run tests. If you plan to catch all possible exceptions for sure you likely will need to resort to catching Exception, as otherwise some places might cause an IllegalArgumentException or IllegalStateException or other RuntimeException instances which are not declared exceptions.
Dominik. On Fri, Dec 18, 2015 at 5:10 PM, Jason Tomforde <[email protected]> wrote: > Hi.. Is there a list of Exceptions that I can catch when calling > XXSFFormulaEvaluator.evaluateFormulaCell()? I found FormulaParseException > and NotImplementedException... > > Thank You, > Jason. >
