Skip to content

Commit 3ef5591

Browse files
authored
Merge pull request #1023 from k163377/fix-doc
Reflect current status to comments
2 parents 5660f33 + c7c2b42 commit 3ef5591

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ import kotlin.reflect.KParameter
1111
* parameter was missing or null.
1212
*/
1313
@Deprecated(
14-
"It is recommended that MismatchedInputException be referenced when possible," +
15-
" as the change is discussed for 2.17 and later." +
14+
"It is recommended that InvalidNullException be referenced when possible," +
15+
" as the change is discussed for 2.20 and later." +
1616
" See #617 for details.",
1717
ReplaceWith(
18-
"MismatchedInputException",
19-
"com.fasterxml.jackson.databind.exc.MismatchedInputException"
18+
"InvalidNullException",
19+
"com.fasterxml.jackson.databind.exc.InvalidNullException"
2020
),
2121
DeprecationLevel.WARNING
2222
)
2323
// When deserialized by the JDK, the parameter property will be null, ignoring nullability.
2424
// This is a temporary workaround for #572 and we will eventually remove this class.
2525
class MissingKotlinParameterException(
2626
@property:Deprecated(
27-
"KParameter is not serializable and will be removed in 2.17 or later. See #572 for details.",
27+
"KParameter is not serializable and will be removed in 2.20 or later. See #572 for details.",
2828
level = DeprecationLevel.WARNING
2929
)
3030
@Transient

0 commit comments

Comments
 (0)