author | alanb |
Wed, 09 Oct 2013 09:20:12 +0100 | |
changeset 20742 | 4ae78e8060d6 |
parent 19835 | 505b6711e79b |
child 23010 | 6dadb192ad81 |
permissions | -rw-r--r-- |
2542 | 1 |
/* |
5506 | 2 |
* Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved. |
2542 | 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 |
2542 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2542 | 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. |
|
2542 | 24 |
*/ |
25 |
package com.sun.nio.sctp; |
|
26 |
||
27 |
/** |
|
28 |
* Unchecked exception thrown when an attempt is made to invoke the |
|
29 |
* {@code receive} method of {@link SctpChannel} or {@link SctpMultiChannel} |
|
30 |
* from a notification handler. |
|
31 |
* |
|
32 |
* @since 1.7 |
|
33 |
*/ |
|
20742
4ae78e8060d6
8008662: Add @jdk.Exported to JDK-specific/exported APIs
alanb
parents:
19835
diff
changeset
|
34 |
@jdk.Exported |
2542 | 35 |
public class IllegalReceiveException extends IllegalStateException { |
36 |
private static final long serialVersionUID = 2296619040988576224L; |
|
37 |
||
38 |
/** |
|
39 |
* Constructs an instance of this class. |
|
40 |
*/ |
|
41 |
public IllegalReceiveException() { } |
|
42 |
||
43 |
/** |
|
44 |
* Constructs an instance of this class with the specified message. |
|
19835 | 45 |
* |
46 |
* @param msg |
|
47 |
* The String that contains a detailed message |
|
2542 | 48 |
*/ |
49 |
public IllegalReceiveException(String msg) { |
|
50 |
super(msg); |
|
51 |
} |
|
52 |
} |
|
53 |