com.flipkart.zjsonpatch.JsonPatchApplicationException 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 JsonPatchApplicationException extends RuntimeException {
public JsonPatchApplicationException(String message) {
super(message);
}
public JsonPatchApplicationException(String message, Throwable cause) {
super(message, cause);
}
public JsonPatchApplicationException(Throwable cause) {
super(cause);
}
}