Silence boring Eclipse warnings: catching all exceptions, part 2

These warning fixes are new since my last pull request, please verify.
This commit is contained in:
Paolo G. Giarrusso
2013-01-22 09:05:15 -05:00
committed by Mark Harrah
parent 236143be8d
commit d64a0e078d
4 changed files with 4 additions and 4 deletions
@@ -83,7 +83,7 @@ final class TestRunner(framework: Framework, loader: ClassLoader, listeners: Seq
}
catch
{
case e =>
case e: Throwable =>
safeListenersCall(_.endGroup(name, e))
TestResult.Error
}