Skip to content

Commit d9bb7a5

Browse files
authored
Merge pull request #1024 from FasterXML/2.19
2.19
2 parents d602f6a + 3ef5591 commit d9bb7a5

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
@@ -10,20 +10,20 @@ import kotlin.reflect.KParameter
1010
* parameter was missing or null.
1111
*/
1212
@Deprecated(
13-
"It is recommended that MismatchedInputException be referenced when possible," +
14-
" as the change is discussed for 2.17 and later." +
13+
"It is recommended that InvalidNullException be referenced when possible," +
14+
" as the change is discussed for 2.20 and later." +
1515
" See #617 for details.",
1616
ReplaceWith(
17-
"MismatchedInputException",
18-
"com.fasterxml.jackson.databind.exc.MismatchedInputException"
17+
"InvalidNullException",
18+
"com.fasterxml.jackson.databind.exc.InvalidNullException"
1919
),
2020
DeprecationLevel.WARNING
2121
)
2222
// When deserialized by the JDK, the parameter property will be null, ignoring nullability.
2323
// This is a temporary workaround for #572 and we will eventually remove this class.
2424
class MissingKotlinParameterException(
2525
@property:Deprecated(
26-
"KParameter is not serializable and will be removed in 2.17 or later. See #572 for details.",
26+
"KParameter is not serializable and will be removed in 2.20 or later. See #572 for details.",
2727
level = DeprecationLevel.WARNING
2828
)
2929
@Transient

0 commit comments

Comments
 (0)