in src/main/java/org/apache/sling/jcr/webdav/impl/servlets/SlingSimpleWebDavServlet.java [64:75]
protected void service(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
try {
doService(request, response);
} catch (RuntimeException re) {
log.error("service: Uncaught RuntimeException", re);
throw new ServletException("Uncaught RuntimeException: " + re);
} catch (Error e) {
log.error("service: Uncaught Error", e);
throw new ServletException("Uncaught Error: " + e);
}
}