1. /*
  2. * @(#)NonReadableChannelException.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 an attempt is made to read
  13. * from a channel that was not originally opened for reading.
  14. *
  15. * @version 1.9, 01/11/19
  16. * @since 1.4
  17. */
  18. public class NonReadableChannelException
  19. extends IllegalStateException
  20. {
  21. /**
  22. * Constructs an instance of this class.
  23. */
  24. public NonReadableChannelException() { }
  25. }