diff --git a/src/test/org/apache/commons/lang3/exception/ExceptionUtilsTest.java b/src/test/org/apache/commons/lang3/exception/ExceptionUtilsTest.java index 0a45bcfa0..c9f83274a 100644 --- a/src/test/org/apache/commons/lang3/exception/ExceptionUtilsTest.java +++ b/src/test/org/apache/commons/lang3/exception/ExceptionUtilsTest.java @@ -550,11 +550,6 @@ public void getTargetException() { // Temporary classes to allow the nested exception code to be removed // prior to a rewrite of this test class. - private static class NestableRuntimeException extends RuntimeException { - public NestableRuntimeException() { super(); } - @SuppressWarnings("unused") - public NestableRuntimeException(Throwable t) { super(t); } - } private static class NestableException extends Exception { @SuppressWarnings("unused") public NestableException() { super(); }