1. /*
  2. * @(#)NoConnectionPendingException.java 1.9 01/11/19
  3. *
  4. * Copyright 2000 by Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. */
  9. // -- This file was mechanically generated: Do not edit! -- //
  10. package java.nio.channels;
  11. /**
  12. * Unchecked exception thrown when the {@link SocketChannel#finishConnect
  13. * finishConnect} method of a {@link SocketChannel} is invoked without first
  14. * successfully invoking its {@link SocketChannel#connect connect} method.
  15. *
  16. * @version 1.9, 01/11/19
  17. * @since 1.4
  18. */
  19. public class NoConnectionPendingException
  20. extends IllegalStateException
  21. {
  22. /**
  23. * Constructs an instance of this class.
  24. */
  25. public NoConnectionPendingException() { }
  26. }