java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.nio.file.FileSystemException
java.nio.file.AccessDeniedException
- 所有已实现的接口:
-
Serializable
当文件系统操作被拒绝时抛出的已检查异常,通常是由于文件权限或其他访问检查。
此异常与访问控制器或安全管理器在拒绝对文件的访问时抛出的AccessControlException
或SecurityException
无关。
- 自 JDK 版本:
- 1.7
- 参见:
-
Constructor Summary
ConstructorDescriptionAccessDeniedException
(String file) 构造此类的实例。AccessDeniedException
(String file, String other, String reason) 构造此类的实例。 -
Method Summary
Methods declared in class java.nio.file.FileSystemException
getFile, getMessage, getOtherFile, getReason
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AccessDeniedException
构造此类的实例。- 参数:
-
file
- 标识文件的字符串,如果未知则为null
-
AccessDeniedException
构造此类的实例。- 参数:
-
file
- 标识文件的字符串,如果未知则为null
-
other
- 标识另一个文件的字符串,如果未知则为null
-
reason
- 具有附加信息的原因消息,如果未知则为null
-