java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.nio.file.FileSystemException
java.nio.file.NoSuchFileException
- 所有已实现的接口:
-
Serializable
尝试访问不存在的文件时抛出的已检查异常。
- 自版本:
- 1.7
- 参见:
-
Constructor Summary
ConstructorDescriptionNoSuchFileException
(String file) 构造此类的实例。NoSuchFileException
(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
-
NoSuchFileException
构造此类的实例。- 参数:
-
file
- 标识文件的字符串,如果不知道则为null
。
-
NoSuchFileException
构造此类的实例。- 参数:
-
file
- 标识文件的字符串,如果不知道则为null
。 -
other
- 标识其他文件的字符串,如果不知道则为null
。 -
reason
- 具有附加信息的原因消息,如果没有则为null
。
-