All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.flipkart.zjsonpatch.JsonPointerEvaluationException Maven / Gradle / Ivy

There is a newer version: 0.4.16
Show newest version
package com.flipkart.zjsonpatch;

import com.fasterxml.jackson.databind.JsonNode;

public class JsonPointerEvaluationException extends Exception {
    private final JsonPointer path;
    private final JsonNode target;

    public JsonPointerEvaluationException(String message, JsonPointer path, JsonNode target) {
        super(message);
        this.path = path;
        this.target = target;
    }

    public JsonPointer getPath() {
        return path;
    }

    public JsonNode getTarget() {
        return target;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy