com.github.hemantsonu20.json.JsonMergeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-merge Show documentation
Show all versions of json-merge Show documentation
A light weight library to merge two json objects into a single json object.
package com.github.hemantsonu20.json;
/**
* Exception to be thrown in case of any error occured while merging two json.
*
*/
public class JsonMergeException extends RuntimeException {
public JsonMergeException() {
super();
}
public JsonMergeException(String msg) {
super(msg);
}
public JsonMergeException(String msg, Throwable th) {
super(msg, th);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy