예제 #1
0
 void handleException(Exception e) {
   if (exceptionHandler != null) {
     exceptionHandler.handle(e);
   } else {
     vertx.reportException(e);
   }
 }
예제 #2
0
 protected void handleHandlerException(Throwable t) {
   vertx.reportException(t);
 }