예제 #1
0
 @Override
 protected void handleException(Throwable t) {
   super.handleException(t);
   if (currentRequest != null) {
     currentRequest.handleException(t);
   }
   if (pendingResponse != null) {
     pendingResponse.handleException(t);
   }
   if (ws != null) {
     ws.handleException(t);
   }
 }