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
* CatchingRunnable#run now catches only Exception
* API breaking change: handleExceptionSafely changes from having a
Throwable argument to Exception
* Rename test methods in CatchingRunnableTest to "should" form for
better readability
* Change Error test to verify it does NOT catch Error
* Add test to verify Throwable (using Lombok's SneakyThrows feature) is
not caught by CatchingRunnable
Closes#527
* CatchingRunnable#run now catches only Exception
* API breaking change: handleExceptionSafely changes from having a
Throwable argument to Exception
* Rename test methods in CatchingRunnableTest to "should" form for
better readability
* Change Error test to verify it does NOT catch Error
* Add test to verify Throwable (using Lombok's SneakyThrows feature) is
not caught by CatchingRunnable
Closes#527
See discussion #526 for full details.
NOTE: This is a breaking API change for version 0.21.0
The
handleException
method signature will change from:CatchingRunnable#handleException(Throwable throwable)
to:
CatchingRunnable#handleException(Exception exception)
The text was updated successfully, but these errors were encountered: