< prev index next >

src/jdk.jdi/share/classes/com/sun/jdi/connect/spi/ClosedConnectionException.java

Print this page
rev 17275 : 8181417: Code cleanups in com.sun.jdi

@@ -44,11 +44,13 @@
  * @see Connection#writePacket
  *
  * @since 1.5
  */
 public class ClosedConnectionException extends java.io.IOException {
+
     private static final long serialVersionUID = 3877032124297204774L;
+
     /**
      * Constructs a {@code ClosedConnectionException} with no detail
      * message.
      */
     public ClosedConnectionException() {

@@ -61,7 +63,6 @@
      * @param message the detail message pertaining to this exception.
      */
     public ClosedConnectionException(String message) {
         super(message);
     }
-
 }
< prev index next >