1 22 package org.xsocket; 23 24 import java.io.IOException ; 25 26 27 34 public class ClosedConnectionException extends IOException { 35 36 private static final long serialVersionUID = 511131820240852835L; 37 38 39 44 public ClosedConnectionException(String msg) { 45 super(msg); 46 } 47 48 49 55 public ClosedConnectionException(String msg, Throwable cause) { 56 super(msg); 57 initCause(cause); 58 } 59 } 60 | Popular Tags |