OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / libcore / luni / src / main / java / java / util / InputMismatchException.java
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  */
16 package java.util;
17
18 import 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  */
28 public 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         super();
39     }
40
41     /**
42      * Constructs a new {@code InputMismatchException} with the stack trace
43      * filled in and {@code msg} as its error message.
44      *
45      * @param msg
46      *           the specified error message.
47      */
48     public InputMismatchException(String msg) {
49         super(msg);
50     }
51 }