< prev index next >

src/java.base/share/classes/java/util/InputMismatchException.java

Print this page

        

*** 24,34 **** */ package java.util; /** ! * Thrown by a <code>Scanner</code> to indicate that the token * retrieved does not match the pattern for the expected type, or * that the token is out of range for the expected type. * * @author unascribed * @see java.util.Scanner --- 24,34 ---- */ package java.util; /** ! * Thrown by a {@code Scanner} to indicate that the token * retrieved does not match the pattern for the expected type, or * that the token is out of range for the expected type. * * @author unascribed * @see java.util.Scanner
*** 37,57 **** public class InputMismatchException extends NoSuchElementException { private static final long serialVersionUID = 8811230760997066428L; /** ! * Constructs an <code>InputMismatchException</code> with <tt>null</tt> * as its error message string. */ public InputMismatchException() { super(); } /** ! * Constructs an <code>InputMismatchException</code>, saving a reference ! * to the error message string <tt>s</tt> for later retrieval by the ! * <tt>getMessage</tt> method. * * @param s the detail message. */ public InputMismatchException(String s) { super(s); --- 37,57 ---- public class InputMismatchException extends NoSuchElementException { private static final long serialVersionUID = 8811230760997066428L; /** ! * Constructs an {@code InputMismatchException} with {@code null} * as its error message string. */ public InputMismatchException() { super(); } /** ! * Constructs an {@code InputMismatchException}, saving a reference ! * to the error message string {@code s} for later retrieval by the ! * {@code getMessage} method. * * @param s the detail message. */ public InputMismatchException(String s) { super(s);
< prev index next >