if (LOG.isLoggable(Level.FINE)) {
LOG.fine("[" + getId() + "] no handler found (for requested resource). returning error message");
}
try {
IHttpResponse response = new HttpResponse(404, "text/html", generateErrorMessageHtml(404, null, getId()));
callResponseHandler(responseHandler, response);
} catch (IOException ioe) {
if (LOG.isLoggable(Level.FINE)) {
LOG.fine("[" + getId() + "] could not send not handle response. " + ioe.toString());
}