java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.util.NoSuchElementException
java.util.InputMismatchException
- 所有已实现的接口:
-
Serializable
由
Scanner
抛出,表示检索到的标记与预期类型的模式不匹配,或者标记超出了预期类型的范围。
- 自 JDK 版本:
- 1.5
- 参见:
-
Constructor Summary
ConstructorDescription构造一个带有null
作为其错误消息字符串的InputMismatchException
。构造一个InputMismatchException
,保存对错误消息字符串s
的引用,以便稍后通过getMessage
方法检索。 -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InputMismatchException
public InputMismatchException()构造一个带有null
作为其错误消息字符串的InputMismatchException
。 -
InputMismatchException
构造一个InputMismatchException
,保存对错误消息字符串s
的引用,以便稍后通过getMessage
方法检索。- 参数:
-
s
- 详细消息。
-