return true;
}
public void writeException(HttpRequest request, HttpResponse response, Throwable e)
{
if (response.isCommitted()) throw new UnhandledException("Response is committed, can't handle exception", e);
Response handledResponse = new ExceptionHandler(providerFactory, unwrappedExceptions).handleException(request, e);
if (handledResponse == null) throw new UnhandledException(e);
try
{
ServerResponseWriter.writeNomapResponse(((BuiltResponse) handledResponse), request, response, providerFactory);
}
catch (Exception e1)
{
throw new UnhandledException(e1);
}
}