com.fasterxml.jackson.databind.exc.InvalidNullException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson-all Show documentation
Show all versions of redisson-all Show documentation
Easy Redis Java client and Real-Time Data Platform. Valkey compatible. Sync/Async/RxJava3/Reactive API. Client side caching. Over 50 Redis based Java objects and services: JCache API, Apache Tomcat, Hibernate, Spring, Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Scheduler, RPC
package com.fasterxml.jackson.databind.exc;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.jackson.databind.PropertyName;
import com.fasterxml.jackson.databind.util.ClassUtil;
/**
* Exception thrown if a `null` value is being encountered for a property
* designed as "fail on null" property (see {@link com.fasterxml.jackson.annotation.JsonSetter}).
*
* @since 2.9
*/
public class InvalidNullException
extends MismatchedInputException // since 2.9
{
private static final long serialVersionUID = 1L; // silly Eclipse, warnings
/**
* Name of property, if known, for which null was encountered.
*/
protected final PropertyName _propertyName;
/*
/**********************************************************
/* Life-cycle
/**********************************************************
*/
protected InvalidNullException(DeserializationContext ctxt, String msg,
PropertyName pname)
{
super(ctxt == null ? null : ctxt.getParser(), msg);
_propertyName = pname;
}
public static InvalidNullException from(DeserializationContext ctxt,
PropertyName name, JavaType type)
{
String msg = String.format("Invalid `null` value encountered for property %s",
ClassUtil.quotedOr(name, ""));
InvalidNullException exc = new InvalidNullException(ctxt, msg, name);
if (type != null) {
exc.setTargetType(type);
}
return exc;
}
public PropertyName getPropertyName() {
return _propertyName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy