93949596979899100101102103
if (pojo != null) { req.setAttribute(WsConstants.POJO_INSTANCE, pojo); } try { service.onMessage(httpRequest, httpResponse); } catch (IOException e) { throw e; } catch (ServletException e) { throw e; } catch (Exception e) {
if (pojo != null) { req.setAttribute(WsConstants.POJO_INSTANCE, pojo); } try { service.onMessage(httpRequest, httpResponse); } catch (final IOException e) { throw e; } catch (final ServletException e) { throw e; } catch (final Exception e) {
if (pojo != null) { req.setAttribute(WsConstants.POJO_INSTANCE, pojo); } try { service.onMessage(httpRequest, httpResponse); } catch (IOException | ServletException e) { throw e; } catch (Exception e) { throw new ServletException("Error processing webservice request", e); }