com.belladati.sdk.exception.server.InternalErrorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-api Show documentation
Show all versions of sdk-api Show documentation
The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.
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");
}
}