git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1506 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2010-04-13 15:40:40 +00:00
parent 8e7f8f8c1c
commit a065f81d35
1 changed files with 2 additions and 2 deletions

View File

@ -410,9 +410,9 @@ public class ProxyHandler extends AbstractHandler
{
ready.await(timeout, TimeUnit.MILLISECONDS);
}
catch (InterruptedException x)
catch (final InterruptedException x)
{
throw new IOException(x);
throw new IOException(){{initCause(x);}};
}
}