< prev index next >

src/java.sql/share/classes/java/sql/BatchUpdateException.java

Print this page

        

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