response.setStatus(HttpServletResponse.SC_NOT_MODIFIED, "Not Modified");With:
try { response.sendError(HttpServletResponse.SC_NOT_MODIFIED, "Not Modified"); } catch (IOException ex) { // Handle exception }
response.setStatus(HttpServletResponse.SC_NOT_MODIFIED, "Not Modified");With:
try { response.sendError(HttpServletResponse.SC_NOT_MODIFIED, "Not Modified"); } catch (IOException ex) { // Handle exception }