You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All exceptions will be propagated as is using neat trick similar to Apache Commons `ExceptionUtils.rethrow` by leveraging Java' type erasure to make checked exceptions unchecked.
73
+
All exceptions will be propagated using neat trick similar to Apache Commons `ExceptionUtils.rethrow` by leveraging Java type erasure to make checked exceptions unchecked.
90
74
91
75
## Try
92
76
@@ -115,7 +99,7 @@ public class Test {
115
99
}
116
100
```
117
101
118
-
Same as for `Optional`, `Try` in case of failure will preserve only first exception happened in call chain and skip further operations.
102
+
Same as for `Optional`, `Try` in case of failure will preserve only first exception happened in a call chain and skip further operations.
0 commit comments