< prev index next >

src/jdk.jdi/share/classes/com/sun/jdi/connect/TransportTimeoutException.java

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

@@ -53,25 +53,25 @@
  * @see com.sun.jdi.connect.spi.TransportService#accept
  *
  * @since 1.5
  */
 public class TransportTimeoutException extends java.io.IOException {
+
     private static final long serialVersionUID = 4107035242623365074L;
+
     /**
      * Constructs a {@code TransportTimeoutException} with no detail
      * message.
      */
     public TransportTimeoutException() {
     }
 
-
     /**
      * Constructs a {@code TransportTimeoutException} with the
      * specified detail message.
      *
      * @param message the detail message pertaining to this exception.
      */
     public TransportTimeoutException(String message) {
         super(message);
     }
-
 }
< prev index next >