- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.nio.file.FileSystemException
-
- java.nio.file.AccessDeniedException
-
- All Implemented Interfaces:
-
Serializable
public class AccessDeniedException extends FileSystemException
文件系统操作被拒绝时引发的检查异常,通常是由于文件权限或其他访问检查。访问控制器或安全管理员在拒绝对文件进行访问时抛出的
AccessControlException
或SecurityException
异常。- 从以下版本开始:
- 1.7
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 AccessDeniedException(String file)
构造这个类的一个实例。AccessDeniedException(String file, String other, String reason)
构造这个类的一个实例。
-
方法摘要
-
Methods inherited from class java.nio.file.FileSystemException
getFile, getMessage, getOtherFile, getReason
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
AccessDeniedException
public AccessDeniedException(String file)
构造这个类的一个实例。- 参数
-
file
- 如果不知道,则标识文件的字符串或null
-
-