java.util

接口
异常
错误
java.lang.Object
  继承者 java.lang.Throwable
      继承者 java.lang.Exception
          继承者 java.lang.RuntimeException
              继承者 java.util.NoSuchElementException
                  继承者 java.util.InputMismatchException
所有已实现的接口:
Serializable

public class InputMismatchException
     
extends NoSuchElementException

Scanner 抛出,表明获取的标记与期望类型的模式不匹配,或者该标记超出期望类型的范围。

从以下版本开始:
1.5
另请参见:
Scanner, 序列化表格

构造方法摘要
InputMismatchException()
          构造 InputMismatchException,使用 null 作为其错误消息字符串。
InputMismatchException(String s)
          构造 InputMismatchException,将引用保存到错误消息字符串 s 中,以便将来由 getMessage 方法获取。
 
方法摘要
 
从类 java.lang.Throwable 继承的方法
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

构造方法详细信息

InputMismatchException

public InputMismatchException()
构造 InputMismatchException,使用 null 作为其错误消息字符串。


InputMismatchException

public InputMismatchException(String s)
构造 InputMismatchException,将引用保存到错误消息字符串 s 中,以便将来由 getMessage 方法获取。

参数:
s - 详细消息。