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

com.belladati.sdk.exception.server.InternalErrorException 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;

/**
 * Indicates an internal server error (HTTP 500) while processing an SDK
 * request. This indicates a bug or configuration problem on the server side.
 * Check the server logs to find out more details.
 * 
 * @author Chris Hennigfeld
 */
public class InternalErrorException extends ServerResponseException {

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

	/**
	 * Creates a new instance.
	 */
	public InternalErrorException() {
		super("Server responded with an internal error");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy