All Versions
1
Latest Version
Avg Release Cycle
-
Latest Release
-
Changelog History
Changelog History
-
v1.0.0 Changes
๐ New
errorHandler.run(BlockExecutor)
saves you from atry/catch
block or twotry { doSomething(); } catch(Exception ex) { errorHandler.handle(ex); } // can now be written as errorHandler.run(() -> doSomething())
๐ฅ Breaking
bindErrorCode
renamed tobind
bindErrorCodeClass
renamed tobindClass