1. /*
  2. * @(#)ClosedByInterruptException.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 received by a thread when another thread interrupts it
  13. * while it is blocked in an I/O operation upon a channel. Before this
  14. * exception is thrown the channel will have been closed and the interrupt
  15. * status of the previously-blocked thread will have been set.
  16. *
  17. * @version 1.9, 01/11/19
  18. * @since 1.4
  19. */
  20. public class ClosedByInterruptException
  21. extends AsynchronousCloseException
  22. {
  23. /**
  24. * Constructs an instance of this class.
  25. */
  26. public ClosedByInterruptException() { }
  27. }