Stay organized with collections
Save and categorize content based on your preferences.
open class InputMismatchException : NoSuchElementException
Thrown by a 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.
Summary
Public constructors |
Constructs an InputMismatchException with null as its error message string.
|
Constructs an InputMismatchException , saving a reference to the error message string s for later retrieval by the getMessage method.
|
Public constructors
InputMismatchException()
Constructs an InputMismatchException
with null
as its error message string.
InputMismatchException(s: String!)
Constructs an InputMismatchException
, saving a reference to the error message string s
for later retrieval by the getMessage
method.
Parameters |
s |
String!: the detail message. |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# InputMismatchException\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nInputMismatchException\n======================\n\n```\nopen class InputMismatchException : NoSuchElementException\n```\n\n|---|---|---|---|---|---------------------------------------|\n| [kotlin.Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) ||||||\n| ↳ | [kotlin.Throwable](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html) |||||\n| | ↳ | [java.lang.Exception](../lang/Exception.html#) ||||\n| | | ↳ | [java.lang.RuntimeException](../lang/RuntimeException.html#) |||\n| | | | ↳ | [java.util.NoSuchElementException](/reference/kotlin/java/util/NoSuchElementException) ||\n| | | | | ↳ | [java.util.InputMismatchException](#) |\n\nThrown by a `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.\n\nSummary\n-------\n\n| Public constructors ||\n|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|\n| [InputMismatchException](#InputMismatchException())`()` Constructs an `InputMismatchException` with `null` as its error message string. |\n| [InputMismatchException](#InputMismatchException(kotlin.String))`(`s:` `[String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!`)` Constructs an `InputMismatchException`, saving a reference to the error message string `s` for later retrieval by the `getMessage` method. |\n\nPublic constructors\n-------------------\n\n### InputMismatchException\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nInputMismatchException()\n```\n\nConstructs an `InputMismatchException` with `null` as its error message string. \n\n### InputMismatchException\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nInputMismatchException(s: String!)\n```\n\nConstructs an `InputMismatchException`, saving a reference to the error message string `s` for later retrieval by the `getMessage` method.\n\n| Parameters ||\n|-----|--------------------------------------------------------------------------------------------------------|\n| `s` | [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!: the detail message. |"]]