1. /*
  2. * @(#)GetEndPointInfoAgainException.java 1.5 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.connection;
  8. /**
  9. * This exception is raised by <code>ORBSocketFactory.createSocket</code>.
  10. * It informs the ORB that it should call
  11. * <code>ORBSocketFactory.getEndPointInfo</code> again with the
  12. * given <code>endPointInfo</code> object as an argument (i.e., a cookie).
  13. *
  14. */
  15. public class GetEndPointInfoAgainException
  16. extends Exception
  17. {
  18. private EndPointInfo endPointInfo;
  19. public GetEndPointInfoAgainException(EndPointInfo endPointInfo)
  20. {
  21. this.endPointInfo = endPointInfo;
  22. }
  23. public EndPointInfo getEndPointInfo()
  24. {
  25. return endPointInfo;
  26. }
  27. }