ClosedConnectionException.java (10444:f08705540498) ClosedConnectionException.java (12588:108912ec77eb)
1/*
2 * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
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
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided

--- 35 unchanged lines hidden (view full) ---

44 * @see Connection#writePacket
45 *
46 * @since 1.5
47 */
48@jdk.Exported
49public class ClosedConnectionException extends java.io.IOException {
50 private static final long serialVersionUID = 3877032124297204774L;
51 /**
1/*
2 * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
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
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided

--- 35 unchanged lines hidden (view full) ---

44 * @see Connection#writePacket
45 *
46 * @since 1.5
47 */
48@jdk.Exported
49public class ClosedConnectionException extends java.io.IOException {
50 private static final long serialVersionUID = 3877032124297204774L;
51 /**
52 * Constructs a <tt>ClosedConnectionException</tt> with no detail
52 * Constructs a {@code ClosedConnectionException} with no detail
53 * message.
54 */
55 public ClosedConnectionException() {
56 }
57
58 /**
53 * message.
54 */
55 public ClosedConnectionException() {
56 }
57
58 /**
59 * Constructs a <tt>ClosedConnectionException</tt> with the
59 * Constructs a {@code ClosedConnectionException} with the
60 * specified detail message.
61 *
62 * @param message the detail message pertaining to this exception.
63 */
64 public ClosedConnectionException(String message) {
65 super(message);
66 }
67
68}
60 * specified detail message.
61 *
62 * @param message the detail message pertaining to this exception.
63 */
64 public ClosedConnectionException(String message) {
65 super(message);
66 }
67
68}