src/share/classes/com/sun/nio/sctp/InvalidStreamException.java

Print this page




  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  *
  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.
  24  */
  25 package com.sun.nio.sctp;
  26 
  27 /**
  28  * Unchecked exception thrown when an attempt is made to send a
  29  * message to an invalid stream.
  30  *
  31  * @since 1.7
  32  */

  33 public class InvalidStreamException extends IllegalArgumentException {
  34     private static final long serialVersionUID = -9172703378046665558L;
  35 
  36     /**
  37      * Constructs an instance of this class.
  38      */
  39     public InvalidStreamException() { }
  40 
  41     /**
  42      * Constructs an instance of this class with the specified detailed message.
  43      */
  44     public InvalidStreamException(String msg) {
  45         super(msg);
  46     }
  47 }
  48 


  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  *
  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.
  24  */
  25 package com.sun.nio.sctp;
  26 
  27 /**
  28  * Unchecked exception thrown when an attempt is made to send a
  29  * message to an invalid stream.
  30  *
  31  * @since 1.7
  32  */
  33 @jdk.Supported
  34 public class InvalidStreamException extends IllegalArgumentException {
  35     private static final long serialVersionUID = -9172703378046665558L;
  36 
  37     /**
  38      * Constructs an instance of this class.
  39      */
  40     public InvalidStreamException() { }
  41 
  42     /**
  43      * Constructs an instance of this class with the specified detailed message.
  44      */
  45     public InvalidStreamException(String msg) {
  46         super(msg);
  47     }
  48 }
  49