io.progix.jackson.exceptions.JsonPatchReplaceFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-patch Show documentation
Show all versions of jackson-patch Show documentation
An implementation of the HTTP method PATCH using RFC6902 using the Jackson JSON processor
The newest version!
package io.progix.jackson.exceptions;
import com.fasterxml.jackson.core.JsonPointer;
import com.fasterxml.jackson.databind.JsonNode;
import io.progix.jackson.JsonPatchOperationType;
public class JsonPatchReplaceFailedException extends JsonPatchFailedException {
public JsonPatchReplaceFailedException(JsonPointer path, JsonNode value, String message) {
super(JsonPatchOperationType.REPLACE, path, value, null, message);
}
public JsonPatchReplaceFailedException(JsonPointer path, JsonNode value, String message, Throwable
cause) {
super(JsonPatchOperationType.REPLACE, path, value, null, message, cause);
}
public JsonPatchReplaceFailedException(JsonPointer path, JsonNode value, Throwable cause) {
super(JsonPatchOperationType.REPLACE, path, value, null, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy