Most visited

Recently visited

Added in API level 1

FileLockInterruptionException

public class FileLockInterruptionException
extends IOException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ java.nio.channels.FileLockInterruptionException


Checked exception received by a thread when another thread interrupts it while it is waiting to acquire a file lock. Before this exception is thrown the interrupt status of the previously-blocked thread will have been set.

Summary

Public constructors

FileLockInterruptionException()

Constructs an instance of this class.

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

FileLockInterruptionException

Added in API level 1
FileLockInterruptionException ()

Constructs an instance of this class.

Hooray!