1/* Licensed to the Apache Software Foundation (ASF) under one or more 2 * contributor license agreements. See the NOTICE file distributed with 3 * this work for additional information regarding copyright ownership. 4 * The ASF licenses this file to You under the Apache License, Version 2.0 5 * (the "License"); you may not use this file except in compliance with 6 * the License. You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16package java.util; 17 18import java.io.Serializable; 19 20/** 21 * An {@code InputMismatchException} is thrown by a scanner to indicate that the 22 * next token does not match or is out of range for the type specified in the 23 * pattern. 24 * 25 * @see Scanner 26 * @see java.lang.RuntimeException 27 */ 28public class InputMismatchException extends NoSuchElementException implements 29 Serializable { 30 31 private static final long serialVersionUID = 8811230760997066428L; 32 33 /** 34 * Constructs a new {@code InputMismatchException} with the current stack 35 * trace filled in. 36 */ 37 public InputMismatchException() { 38 } 39 40 /** 41 * Constructs a new {@code InputMismatchException} with the stack trace 42 * filled in and {@code msg} as its error message. 43 * 44 * @param msg 45 * the specified error message. 46 */ 47 public InputMismatchException(String msg) { 48 super(msg); 49 } 50} 51