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. // -- This file was mechanically generated: Do not edit! -- //
  10. package java.nio.channels;
  11. /**
  12. * Unchecked exception thrown when an attempt is made to acquire a lock on a
  13. * region of a file that overlaps a region already locked by the same Java
  14. * virtual machine, or when another thread is already waiting to lock an
  15. * overlapping region of the same file.
  16. *
  17. * @version 1.9, 01/11/19
  18. * @since 1.4
  19. */
  20. public class OverlappingFileLockException
  21. extends IllegalStateException
  22. {
  23. /**
  24. * Constructs an instance of this class.
  25. */
  26. public OverlappingFileLockException() { }
  27. }