removed unecessary dependency on ServletException

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1823 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Rob Harrop 2009-09-04 18:46:55 +00:00
parent 0c1881cdf0
commit 3c62e6f152
1 changed files with 2 additions and 4 deletions

View File

@ -19,8 +19,6 @@ package org.springframework.core;
import java.io.ByteArrayOutputStream;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import junit.framework.TestCase;
import junit.framework.Assert;
@ -49,7 +47,7 @@ public class NestedExceptionTests extends TestCase {
public void testNestedRuntimeExceptionWithRootCause() {
String myMessage = "mesg for this exception";
String rootCauseMesg = "this is the obscure message of the root cause";
ServletException rootCause = new ServletException(rootCauseMesg);
Exception rootCause = new Exception(rootCauseMesg);
// Making a class abstract doesn't _really_ prevent instantiation :-)
NestedRuntimeException nex = new NestedRuntimeException(myMessage, rootCause) {};
Assert.assertEquals(nex.getCause(), rootCause);
@ -85,7 +83,7 @@ public class NestedExceptionTests extends TestCase {
public void testNestedCheckedExceptionWithRootCause() {
String myMessage = "mesg for this exception";
String rootCauseMesg = "this is the obscure message of the root cause";
ServletException rootCause = new ServletException(rootCauseMesg);
Exception rootCause = new Exception(rootCauseMesg);
// Making a class abstract doesn't _really_ prevent instantiation :-)
NestedCheckedException nex = new NestedCheckedException(myMessage, rootCause) {};
Assert.assertEquals(nex.getCause(), rootCause);