SerializableInputMismatchExceptionpublic class NoSuchElementException extends RuntimeException
| Constructor | Description | 
|---|---|
| NoSuchElementException() | Constructs a  NoSuchElementExceptionwithnullas its error message string. | 
| NoSuchElementException | Constructs a  NoSuchElementException, saving a reference to the error message stringsfor later retrieval by thegetMessagemethod. | 
| NoSuchElementException | Constructs a  NoSuchElementExceptionwith the specified detail message and cause. | 
| NoSuchElementException | Constructs a  NoSuchElementExceptionwith the specified cause. | 
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public NoSuchElementException()
NoSuchElementException with null as its error message string.public NoSuchElementException(String s, Throwable cause)
NoSuchElementException with the specified detail message and cause.s - the detail message, or nullcause - the cause (which is saved for later retrieval by the Throwable.getCause() method), or nullpublic NoSuchElementException(Throwable cause)
NoSuchElementException with the specified cause. The detail message is set to (cause == null ? null :
 cause.toString()) (which typically contains the class and detail message of cause).cause - the cause (which is saved for later retrieval by the Throwable.getCause() method)public NoSuchElementException(String s)
NoSuchElementException, saving a reference to the error message string s for later retrieval by the getMessage method.s - the detail message.
    © 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
    https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/NoSuchElementException.html