所有类


java.nio.channels
类 FileLockInterruptionException

java.lang.Object
  继承者 java.lang.Throwable
      继承者 java.lang.Exception
          继承者 java.io.IOException
              继承者 java.nio.channels.FileLockInterruptionException
所有已实现的接口:
Serializable

public class FileLockInterruptionException
   
   
   
   
   
extends IOException

当某个线程正在等待获取文件锁定时被另一个线程中断,则由该线程接收此经过检查的异常。抛出此异常之前,将设置以前被阻塞的线程的中断状态。

从以下版本开始:
1.4
另请参见:
序列化表格

构造方法摘要
FileLockInterruptionException()
          构造此类的一个实例。
 
方法摘要
 
从类 java.lang.Throwable 继承的方法
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

构造方法详细信息

FileLockInterruptionException

public FileLockInterruptionException()
构造此类的一个实例。


所有类