1 /* 2 * @(#)FileLockInterruptionException.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 received by a thread when another thread interrupts it 17 * while it is waiting to acquire a file lock. Before this exception is thrown 18 * the interrupt status of the previously-blocked thread will have been set. 19 * 20 * @version 1.9, 01/11/19 21 * @since 1.4 22 */ 23 24 public class FileLockInterruptionException 25 extends java.io.IOException 26 { 27 28 /** 29 * Constructs an instance of this class. 30 */ 31 public FileLockInterruptionException() { } 32 33 } 34