1 7 8 package com.sun.corba.se.spi.legacy.connection; 9 10 import com.sun.corba.se.spi.transport.SocketInfo; 11 12 19 20 public class GetEndPointInfoAgainException 21 extends Exception  22 { 23 private SocketInfo socketInfo; 24 25 public GetEndPointInfoAgainException(SocketInfo socketInfo) 26 { 27 this.socketInfo = socketInfo; 28 } 29 30 public SocketInfo getEndPointInfo() 31 { 32 return socketInfo; 33 } 34 } 35 | Popular Tags |