Package be.sddevelopment.commons.exceptions
When working with external/JDK libraries, the checked exceptions they throw sometimes prevent you from writing the code you want. The most common strategies of dealing with unwanted checked exceptions are: - ignoring them - converting them to unchecked exceptions - converting the return type to an Optional.empty() - handling them with an alternative flow / logging
- Since:
- 1.0.0
- Author:
- Stijn Dejongh
-
Class Summary Class Description ExceptionSuppressor When using functional programming techniques in java 8+, a common issue is the inability to chain operations using method references if those called methods throw a checked exception. -
Exception Summary Exception Description WrappedException Description of file/class