|
|
|
|
|
by flakes
978 days ago
|
|
Very true. Checked exceptions in Java are a form of function coloring problem for modern libraries. Especially painful when using any of the functional style stream operations, like `map`, `filter`, etc, or any other higher order function library. Most take in the standard `Function` or `BiFunction` interface arguments, which will not support method referencing for anything which includes a checked exception as part of its signature. |
|