< 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,54 **** --- 44,56 ---- * @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,67 **** * @param message the detail message pertaining to this exception. */ public ClosedConnectionException(String message) { super(message); } - } --- 63,68 ----
< prev index next >