1 /* 2 * @(#)OverlappingFileLockException.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 * Unchecked exception thrown when an attempt is made to acquire a lock on a 17 * region of a file that overlaps a region already locked by the same Java 18 * virtual machine, or when another thread is already waiting to lock an 19 * overlapping region of the same file. 20 * 21 * @version 1.9, 01/11/19 22 * @since 1.4 23 */ 24 25 public class OverlappingFileLockException 26 extends IllegalStateException 27 { 28 29 /** 30 * Constructs an instance of this class. 31 */ 32 public OverlappingFileLockException() { } 33 34 } 35