update jetty to version 9.2.2.v20140723

This commit is contained in:
Sebastian Sdorra
2014-08-23 22:55:55 +02:00
parent b764c54b44
commit 9d1480acee
9 changed files with 107 additions and 163 deletions

View File

@@ -99,16 +99,9 @@ public class ScmServer extends Thread
server.join();
}
catch (Exception ex)
catch (InterruptedException ex)
{
if (ex instanceof ScmServerException)
{
throw(ScmServerException) ex;
}
else
{
throw new ScmServerException("could not start scm-server", ex);
}
throw new ScmServerException("could not start scm-server", ex);
}
}