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

com.github.hemantsonu20.json.JsonMergeException Maven / Gradle / Ivy

Go to download

A light weight library to merge two json objects into a single json object.

There is a newer version: 1.0.2
Show newest version
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