Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 425 Bytes

ChangeLog.md

File metadata and controls

28 lines (16 loc) · 425 Bytes

ChangeLog

v1.0.0

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