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 10 // -- This file was mechanically generated: Do not edit! -- // 11 12 package java.nio.channels; 13 14 15 /** 16 * Checked exception thrown when an attempt is made to invoke or complete an 17 * I/O operation upon channel that is closed, or at least closed to that 18 * operation. That this exception is thrown does not necessarily imply that 19 * the channel is completely closed. A socket channel whose write half has 20 * been shut down, for example, may still be open for reading. 21 * 22 * @version 1.9, 01/11/19 23 * @since 1.4 24 */ 25 26 public class ClosedChannelException 27 extends java.io.IOException 28 { 29 30 /** 31 * Constructs an instance of this class. 32 */ 33 public ClosedChannelException() { } 34 35 } 36