< prev index next >

src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialRef.java

Print this page

        

@@ -235,11 +235,11 @@
     /**
      * writeObject is called to save the state of the SerialRef
      * to a stream.
      */
     private void writeObject(ObjectOutputStream s)
-            throws IOException, ClassNotFoundException {
+            throws IOException {
 
         ObjectOutputStream.PutField fields = s.putFields();
         fields.put("baseTypeName", baseTypeName);
         fields.put("object", object);
         // Note: this check to see if it is an instance of Serializable
< prev index next >