1 9 package org.jboss.remoting; 10 11 18 public class ConnectionFailedException extends RuntimeException  19 { 20 23 static final long serialVersionUID = 1353105726630086615L; 24 25 public ConnectionFailedException() 26 { 27 super(); 28 } 29 30 public ConnectionFailedException(String msg) 31 { 32 super(msg); 33 } 34 35 public ConnectionFailedException(String msg, Exception ex) 36 { 37 super(msg, ex); 38 } 39 } 40 | Popular Tags |