Stay organized with collections
Save and categorize content based on your preferences.
open class MalformedParameterizedTypeException : RuntimeException
Thrown when a semantically malformed parameterized type is encountered by a reflective method that needs to instantiate it. For example, if the number of type arguments to a parameterized type is wrong.
Summary
Public constructors |
Constructs a MalformedParameterizedTypeException with no detail message.
|
Constructs a MalformedParameterizedTypeException with the given detail message.
|
Public constructors
MalformedParameterizedTypeException()
Constructs a MalformedParameterizedTypeException
with no detail message.
MalformedParameterizedTypeException(message: String!)
Constructs a MalformedParameterizedTypeException
with the given detail message.
Parameters |
message |
String!: the detail message; may be null |
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,["# MalformedParameterizedTypeException\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nMalformedParameterizedTypeException\n===================================\n\n```\nopen class MalformedParameterizedTypeException : RuntimeException\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](../Exception.html#) |||\n| | | ↳ | [java.lang.RuntimeException](../RuntimeException.html#) ||\n| | | | ↳ | [java.lang.reflect.MalformedParameterizedTypeException](#) |\n\nThrown when a semantically malformed parameterized type is encountered by a reflective method that needs to instantiate it. For example, if the number of type arguments to a parameterized type is wrong.\n\nSummary\n-------\n\n| Public constructors ||\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|\n| [MalformedParameterizedTypeException](#MalformedParameterizedTypeException())`()` Constructs a `MalformedParameterizedTypeException` with no detail message. |\n| [MalformedParameterizedTypeException](#MalformedParameterizedTypeException(kotlin.String))`(`message:` `[String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!`)` Constructs a `MalformedParameterizedTypeException` with the given detail message. |\n\nPublic constructors\n-------------------\n\n### MalformedParameterizedTypeException\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nMalformedParameterizedTypeException()\n```\n\nConstructs a `MalformedParameterizedTypeException` with no detail message. \n\n### MalformedParameterizedTypeException\n\nAdded in [API level 33](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nMalformedParameterizedTypeException(message: String!)\n```\n\nConstructs a `MalformedParameterizedTypeException` with the given detail message.\n\n| Parameters ||\n|-----------|----------------------------------------------------------------------------------------------------------------------|\n| `message` | [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!: the detail message; may be `null` |"]]