< prev index next >

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

Print this page

        

@@ -627,11 +627,11 @@
     /**
      * writeObject is called to save the state of the {@code SerialArray}
      * to a stream.
      */
     private void writeObject(ObjectOutputStream s)
-            throws IOException, ClassNotFoundException {
+            throws IOException {
 
         ObjectOutputStream.PutField fields = s.putFields();
         fields.put("elements", elements);
         fields.put("len", len);
         fields.put("baseType", baseType);
< prev index next >