All Versions
1
Latest Version
Avg Release Cycle
-
Latest Release
-

Changelog History

  • v1.0.0 Changes

    ๐Ÿ†• New

    • errorHandler.run(BlockExecutor) saves you from a try/catch block or two

       try {
          doSomething();
       } catch(Exception ex) {
          errorHandler.handle(ex);
       }
      
       // can now be written as
      
       errorHandler.run(() -> doSomething())
      

    ๐Ÿ’ฅ Breaking

    • bindErrorCode renamed to bind
    • bindErrorCodeClass renamed to bindClass