Module java.base
Package java.util

Class NoSuchElementException

所有已实现的接口:
Serializable
直接已知的子类:
InputMismatchException

public class NoSuchElementException extends RuntimeException
由各种访问器方法抛出,表示请求的元素不存在。
自:
1.0
参见:
  • Constructor Details

    • NoSuchElementException

      public NoSuchElementException()
      null作为其错误消息字符串构造一个NoSuchElementException
    • NoSuchElementException

      public NoSuchElementException(String s, Throwable cause)
      用指定的详细消息和原因构造一个NoSuchElementException
      参数:
      s - 详细消息,或null
      cause - 原因(保存供稍后通过Throwable.getCause()方法检索),或null
      自:
      15
    • NoSuchElementException

      public NoSuchElementException(Throwable cause)
      用指定的原因构造一个NoSuchElementException。详细消息设置为(cause == null ? null : cause.toString())(通常包含cause的类和详细消息)。
      参数:
      cause - 原因(保存供稍后通过Throwable.getCause()方法检索)
      自:
      15
    • NoSuchElementException

      public NoSuchElementException(String s)
      构造一个NoSuchElementException,保存错误消息字符串s的引用,以便稍后通过getMessage方法检索。
      参数:
      s - 详细消息。