Drop unthrown Exception

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@829941 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-10-26 20:34:50 +00:00
parent ababfcf843
commit 61800cce67
1 changed files with 1 additions and 1 deletions

View File

@ -390,7 +390,7 @@ public void testCloneUnserializable() throws Exception {
class ClassNotFoundSerialization implements Serializable class ClassNotFoundSerialization implements Serializable
{ {
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { private void readObject(ObjectInputStream in) throws ClassNotFoundException {
throw new ClassNotFoundException(SerializationUtilsTest.CLASS_NOT_FOUND_MESSAGE); throw new ClassNotFoundException(SerializationUtilsTest.CLASS_NOT_FOUND_MESSAGE);
} }
} }