Example usage for com.fasterxml.jackson.core JsonProcessingException subclass-usage

List of usage examples for com.fasterxml.jackson.core JsonProcessingException subclass-usage

Introduction

In this page you can find the example usage for com.fasterxml.jackson.core JsonProcessingException subclass-usage.

Usage

From source file org.freelectron.leobel.testlwa.models.exception.AVSJsonProcessingException.java

public class AVSJsonProcessingException extends JsonProcessingException {

    private final String unparseable;

    public AVSJsonProcessingException(String message, JsonProcessingException e, String unparseable) {
        super(message, e);

From source file org.n52.iceland.exception.JSONException.java

public class JSONException extends JsonProcessingException {
    private static final long serialVersionUID = -62239056976814895L;

    public JSONException(String msg, JsonLocation loc, Throwable rootCause) {
        super(msg, loc, rootCause);
    }

From source file eu.trentorise.opendata.semtext.jackson.SemTextMetadataException.java

/**
 * Exception for problems occurring during SemText metadata deserialization.
 *
 * @author David Leoni
 */
public class SemTextMetadataException extends JsonProcessingException {