author | chegar |
Thu, 17 Oct 2019 20:53:35 +0100 | |
branch | datagramsocketimpl-branch |
changeset 58678 | 9cf78a70fa4f |
parent 47216 | 71c04702a3d5 |
child 58679 | 9c3209ff7550 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
58678 | 2 |
* Copyright (c) 1995, 2019, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package java.io; |
|
27 |
||
28 |
/** |
|
29 |
* Signals that an I/O operation has been interrupted. An |
|
58678 | 30 |
* {@code InterruptedIOException} is thrown to indicate that an |
2 | 31 |
* input or output transfer has been terminated because the thread |
32 |
* performing it was interrupted. The field {@link #bytesTransferred} |
|
33 |
* indicates how many bytes were successfully transferred before |
|
34 |
* the interruption occurred. |
|
35 |
* |
|
36 |
* @author unascribed |
|
37 |
* @see java.io.InputStream |
|
38 |
* @see java.io.OutputStream |
|
39 |
* @see java.lang.Thread#interrupt() |
|
24865
09b1d992ca72
8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents:
5506
diff
changeset
|
40 |
* @since 1.0 |
2 | 41 |
*/ |
42 |
public |
|
43 |
class InterruptedIOException extends IOException { |
|
58678 | 44 |
@java.io.Serial |
1320
2412b1562801
6749308: java.io, java.lang, java.util exception classes don't specify serialVersionUID
chegar
parents:
2
diff
changeset
|
45 |
private static final long serialVersionUID = 4020568460727500567L; |
2412b1562801
6749308: java.io, java.lang, java.util exception classes don't specify serialVersionUID
chegar
parents:
2
diff
changeset
|
46 |
|
2 | 47 |
/** |
58678 | 48 |
* Constructs an {@code InterruptedIOException} with |
49 |
* {@code null} as its error detail message. |
|
2 | 50 |
*/ |
51 |
public InterruptedIOException() { |
|
52 |
super(); |
|
53 |
} |
|
54 |
||
55 |
/** |
|
58678 | 56 |
* Constructs an {@code InterruptedIOException} with the |
57 |
* specified detail message. The string {@code s} can be |
|
2 | 58 |
* retrieved later by the |
59 |
* <code>{@link java.lang.Throwable#getMessage}</code> |
|
58678 | 60 |
* method of class {@code java.lang.Throwable}. |
2 | 61 |
* |
62 |
* @param s the detail message. |
|
63 |
*/ |
|
64 |
public InterruptedIOException(String s) { |
|
65 |
super(s); |
|
66 |
} |
|
67 |
||
68 |
/** |
|
69 |
* Reports how many bytes had been transferred as part of the I/O |
|
70 |
* operation before it was interrupted. |
|
71 |
* |
|
72 |
* @serial |
|
73 |
*/ |
|
74 |
public int bytesTransferred = 0; |
|
75 |
} |