SergelsOrg / csv2tex

Tool to replace placeholders in tex-files
GNU General Public License v3.0
5 stars 0 forks source link

Don't catch Throwable #82

Closed ArchibaldBienetre closed 2 years ago

ArchibaldBienetre commented 2 years ago

Don't catch Throwable:s - these may be Exceptions or Errors, and catching Errors (like OutOfMemoryError) may bring unwanted side effects, making your application unstable.

E.g. see this rule in the PMD static code analyzer.

For the record, it's not dangerous in this place, as we immediately wrap + rethrow.
But it looks really unprofessional.