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:
parent
ababfcf843
commit
61800cce67
|
@ -390,7 +390,7 @@ public class SerializationUtilsTest extends TestCase {
|
||||||
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue