com.flipkart.zjsonpatch.InvalidJsonPatchException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zjsonpatch Show documentation
Show all versions of zjsonpatch Show documentation
Java Library to find / apply JSON Patches according to RFC 6902
package com.flipkart.zjsonpatch;
/**
* User: holograph
* Date: 03/08/16
*/
public class InvalidJsonPatchException extends JsonPatchApplicationException {
public InvalidJsonPatchException(String message) {
super(message);
}
public InvalidJsonPatchException(String message, Throwable cause) {
super(message, cause);
}
public InvalidJsonPatchException(Throwable cause) {
super(cause);
}
}