1. /*
  2. * @(#)ClosedChannelException.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. * Checked exception thrown when an attempt is made to invoke or complete an
  13. * I/O operation upon channel that is closed, or at least closed to that
  14. * operation. That this exception is thrown does not necessarily imply that
  15. * the channel is completely closed. A socket channel whose write half has
  16. * been shut down, for example, may still be open for reading.
  17. *
  18. * @version 1.9, 01/11/19
  19. * @since 1.4
  20. */
  21. public class ClosedChannelException
  22. extends java.io.IOException
  23. {
  24. /**
  25. * Constructs an instance of this class.
  26. */
  27. public ClosedChannelException() { }
  28. }