- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.util.ConcurrentModificationException
-
- java.nio.file.DirectoryIteratorException
-
- All Implemented Interfaces:
-
Serializable
public final class DirectoryIteratorException extends ConcurrentModificationException
如果在遍历目录中的条目时遇到I / O错误,则抛出运行时异常。 使用getCause()
方法检索作为IOException
的I / O错误。- 从以下版本开始:
- 1.7
- 另请参见:
-
DirectoryStream
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 DirectoryIteratorException(IOException cause)
构造这个类的一个实例。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 IOException
getCause()
返回此异常的原因。-
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, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
DirectoryIteratorException
public DirectoryIteratorException(IOException cause)
构造这个类的一个实例。- 参数
-
cause
- 导致目录迭代失败的IOException
- 异常
-
NullPointerException
- 如果原因是null
-
-
方法详细信息
-
getCause
public IOException getCause()
返回此异常的原因。
-
-