in src/main/java/com/spotify/github/jackson/Json.java [224:235]
public <T> T fromJsonUncheckedNotNull(
final String content, final TypeReference<T> typeReference) {
try {
final T t = mapper.readValue(content, typeReference);
if (isNull(t)) {
throw new DeserializationException(content);
}
return t;
} catch (IOException e) {
throw new RuntimeException(e);
}
}