less verbose
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@847 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
002518bd48
commit
ffa43e89a9
|
@ -551,16 +551,18 @@ public class HttpConnection implements Connection
|
|||
}
|
||||
catch (ContinuationThrowable e)
|
||||
{
|
||||
Log.debug(e);
|
||||
Log.ignore(e);
|
||||
}
|
||||
catch (EofException e)
|
||||
{
|
||||
Log.debug(e);
|
||||
_request.setHandled(true);
|
||||
error=true;
|
||||
}
|
||||
catch (RuntimeIOException e)
|
||||
{
|
||||
Log.debug(e);
|
||||
_request.setHandled(true);
|
||||
error=true;
|
||||
}
|
||||
catch (HttpException e)
|
||||
|
|
|
@ -440,6 +440,10 @@ public class ServletHandler extends ScopedHandler
|
|||
{
|
||||
throw e;
|
||||
}
|
||||
catch(RuntimeIOException e)
|
||||
{
|
||||
throw e;
|
||||
}
|
||||
catch(ContinuationThrowable e)
|
||||
{
|
||||
throw e;
|
||||
|
|
Loading…
Reference in New Issue