void handleException(Exception e) { if (exceptionHandler != null) { exceptionHandler.handle(e); } else { vertx.reportException(e); } }
protected void handleHandlerException(Throwable t) { vertx.reportException(t); }