java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.nio.file.FileSystemException
java.nio.file.NotLinkException
- 所有已实现的接口:
-
Serializable
当文件系统操作失败因为文件不是一个符号链接时抛出的已检查异常。
- 自从:
- 1.7
- 参见:
-
Constructor Summary
ConstructorDescriptionNotLinkException
(String file) 构造此类的一个实例。NotLinkException
(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
-
NotLinkException
构造此类的一个实例。- 参数:
-
file
- 标识文件的字符串,如果不知道则为null
-
NotLinkException
构造此类的一个实例。- 参数:
-
file
- 标识文件的字符串,如果不知道则为null
-
other
- 标识另一个文件的字符串,如果不知道则为null
-
reason
- 带有额外信息的原因消息,如果没有则为null
-