io.progix.jackson.exceptions.JsonPatchFormatException 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 java.io.IOException;
public class JsonPatchFormatException extends IOException {
public JsonPatchFormatException(String message) {
super(message);
}
public JsonPatchFormatException(String message, Throwable cause) {
super(message, cause);
}
public JsonPatchFormatException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy