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

com.belladati.sdk.exception.server.InvalidJsonException Maven / Gradle / Ivy

Go to download

The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.

There is a newer version: 0.9.15.1
Show newest version
package com.belladati.sdk.exception.server;

/**
 * A response from the server couldn't be parsed as JSON even though the server
 * responded with HTTP 200. This most likely indicates a server-side error
 * creating the response content.
 * 
 * @author Chris Hennigfeld
 */
public class InvalidJsonException extends ServerResponseException {

	/** The serialVersionUID */
	private static final long serialVersionUID = 2902541340191469699L;

	public InvalidJsonException(String message) {
		super(message);
	}

	public InvalidJsonException(Throwable cause) {
		super(cause);
	}

	public InvalidJsonException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy