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

org.camunda.bpm.extension.keycloak.json.JsonException Maven / Gradle / Ivy

There is a newer version: 2.2.3
Show newest version
package org.camunda.bpm.extension.keycloak.json;

/**
 * Exception thrown in case of any JSON errors.
 */
public class JsonException extends Exception {

	/** This class' serial version UID. */
	private static final long serialVersionUID = -3207252773395186866L;

	/** 
	 * Constructs a new JsonException.
	 * @param message the message
	 * @param cause the original cause
	 */
	public JsonException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy