Drop unthrown Exception

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@829548 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-10-25 11:45:41 +00:00
parent ebb466c417
commit 6627b34cbf
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ public class ConcurrentUtilsTest extends TestCase {
/**
* Tests handleCause() if the cause is a checked exception.
*/
public void testHandleCauseChecked() throws ConcurrentException {
public void testHandleCauseChecked() {
Exception ex = new Exception("Test");
try {
ConcurrentUtils.handleCause(new ExecutionException(ex));