Example usage for com.fasterxml.jackson.databind DeserializationContext endOfInputException

List of usage examples for com.fasterxml.jackson.databind DeserializationContext endOfInputException

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind DeserializationContext endOfInputException.

Prototype

public JsonMappingException endOfInputException(Class<?> paramClass) 

Source Link

Usage

From source file:com.github.shyiko.jackson.module.advice.AdvisedBeanDeserializer.java

protected Object _missingToken(JsonParser jp, DeserializationContext ctxt) throws JsonProcessingException {
    throw ctxt.endOfInputException(handledType());
}