We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 50b29d9 + acd8791 commit 581cb83Copy full SHA for 581cb83
src/main/kotlin/com/fasterxml/jackson/module/kotlin/Exceptions.kt
@@ -10,6 +10,14 @@ import kotlin.reflect.KParameter
10
* Specialized [JsonMappingException] sub-class used to indicate that a mandatory Kotlin constructor
11
* parameter was missing or null.
12
*/
13
+@Deprecated(
14
+ "It will be removed in jackson-module-kotlin 2.16. See #617 for details.",
15
+ ReplaceWith(
16
+ "MismatchedInputException",
17
+ "com.fasterxml.jackson.databind.exc.MismatchedInputException"
18
+ ),
19
+ DeprecationLevel.WARNING
20
+)
21
class MissingKotlinParameterException(val parameter: KParameter,
22
processor: JsonParser? = null,
23
msg: String) : MismatchedInputException(processor, msg) {
0 commit comments