io.progix.jackson.exceptions.JsonPatchRemoveFailedException 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 io.progix.jackson.JsonPatchOperationType;
public class JsonPatchRemoveFailedException extends JsonPatchFailedException {
public JsonPatchRemoveFailedException(JsonPointer path, String message) {
super(JsonPatchOperationType.REMOVE, path, null, null, message);
}
public JsonPatchRemoveFailedException(JsonPointer path, String message, Throwable cause) {
super(JsonPatchOperationType.REMOVE, path, null, null, message, cause);
}
public JsonPatchRemoveFailedException(JsonPointer path, Throwable cause) {
super(JsonPatchOperationType.REMOVE, path, null, null, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy