Skip to content

Latest commit

History

History
28 lines (16 loc) · 425 Bytes

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(Exceptionex) {
    errorHandler.handle(ex);
    }
    // can now be written aserrorHandler.run(() -> doSomething())

Breaking

  • bindErrorCode renamed to bind
  • bindErrorCodeClass renamed to bindClass