- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.util.NoSuchElementException
-
- All Implemented Interfaces:
-
Serializable
- 已知直接子类:
-
InputMismatchException
public class NoSuchElementException extends RuntimeException
被各种访问器方法抛出,表示被请求的元素不存在。- 从以下版本开始:
- 1.0
- 另请参见:
-
Enumeration.nextElement()
,Iterator.next()
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 NoSuchElementException()
构造一个NoSuchElementException
其中null
作为其错误消息字符串。NoSuchElementException(String s)
构造一个NoSuchElementException
,保存对错误消息字符串s
的引用,以供稍后通过getMessage
方法检索。
-
方法摘要
-
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, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
NoSuchElementException
public NoSuchElementException()
构造一个NoSuchElementException
其中null
为错误消息字符串。
-
NoSuchElementException
public NoSuchElementException(String s)
构造一个NoSuchElementException
,保存对错误消息字符串s
的引用,以供稍后通过getMessage
方法检索。- 参数
-
s
- 详细信息。
-
-