001 package dk.i1.sctp;
002 /**This exception is thrown when an operation on an SCTPSocket would block and the socket is in non-blocking mode.
003 */
004 public class WouldBlockException extends Exception {
005 public WouldBlockException(String msg) {
006 super(msg);
007 }
008 }