File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
src/main/kotlin/com/fasterxml/jackson/module/kotlin Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,10 @@ import kotlin.reflect.KParameter
10
10
* parameter was missing or null.
11
11
*/
12
12
@Deprecated(
13
- " It is recommended that InvalidNullException be referenced when possible," +
14
- " as the change is discussed for 2.20 and later." +
15
- " See #617 for details." ,
16
- ReplaceWith (
17
- " InvalidNullException" ,
18
- " com.fasterxml.jackson.databind.exc.InvalidNullException"
19
- ),
20
- DeprecationLevel .WARNING
13
+ " Since 2.20, this exception is no longer thrown and has been replaced by KotlinInvalidNullException. " +
14
+ " See #617 for details." ,
15
+ ReplaceWith (" KotlinInvalidNullException" ),
16
+ DeprecationLevel .ERROR
21
17
)
22
18
// When deserialized by the JDK, the parameter property will be null, ignoring nullability.
23
19
// This is a temporary workaround for #572 and we will eventually remove this class.
You can’t perform that action at this time.
0 commit comments