All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.flipkart.zjsonpatch.InvalidJsonPatchException Maven / Gradle / Ivy

There is a newer version: 0.4.16
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy