1 package javax.sip; 2 3 import java.util.EventObject; 4 5 public class IOExceptionEvent extends EventObject { 6 private String mHost; 7 private int mPort; 8 private String mTransport; 9 10 public IOExceptionEvent(Object source, String host, int port, 11 String transport) { 12 super(source); 13 mHost = host; 14 mPort = port; 15 mTransport = transport; 16 } 17 18 public String getHost() { 19 return mHost; 20 } 21 22 public int getPort() { 23 return mPort; 24 } 25 26 public String getTransport() { 27 return mTransport; 28 } 29 } 30