jdk/src/jdk.jdi/share/classes/com/sun/jdi/connect/spi/ClosedConnectionException.java
changeset 45564 0149773a140c
parent 34894 3248b89d1921
equal deleted inserted replaced
45563:ece4ae6beba3 45564:0149773a140c
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    44  * @see Connection#writePacket
    44  * @see Connection#writePacket
    45  *
    45  *
    46  * @since 1.5
    46  * @since 1.5
    47  */
    47  */
    48 public class ClosedConnectionException extends java.io.IOException {
    48 public class ClosedConnectionException extends java.io.IOException {
       
    49 
    49     private static final long serialVersionUID = 3877032124297204774L;
    50     private static final long serialVersionUID = 3877032124297204774L;
       
    51 
    50     /**
    52     /**
    51      * Constructs a {@code ClosedConnectionException} with no detail
    53      * Constructs a {@code ClosedConnectionException} with no detail
    52      * message.
    54      * message.
    53      */
    55      */
    54     public ClosedConnectionException() {
    56     public ClosedConnectionException() {
    61      * @param message the detail message pertaining to this exception.
    63      * @param message the detail message pertaining to this exception.
    62      */
    64      */
    63     public ClosedConnectionException(String message) {
    65     public ClosedConnectionException(String message) {
    64         super(message);
    66         super(message);
    65     }
    67     }
    66 
       
    67 }
    68 }