Skip to content

Commit 57b303d

Browse files
committed
Raised deprecation level to ERROR
Because it has remained deprecated for a long time.
1 parent f8921c1 commit 57b303d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main/kotlin/com/fasterxml/jackson/module/kotlin/Exceptions.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ class MissingKotlinParameterException(
3232
processor: JsonParser? = null,
3333
msg: String
3434
) : MismatchedInputException(processor, msg) {
35-
@Deprecated("Use main constructor", ReplaceWith("MissingKotlinParameterException(KParameter, JsonParser?, String)"))
35+
@Deprecated(
36+
"Use main constructor, ",
37+
ReplaceWith("MissingKotlinParameterException(KParameter, JsonParser?, String)"),
38+
DeprecationLevel.ERROR,
39+
)
3640
constructor(
3741
parameter: KParameter,
3842
processor: Closeable? = null,

0 commit comments

Comments
 (0)