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

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

/**
 * Connection to the BellaDati server failed. If you see this, check the
 * following:
 * 
    *
  • Your BellaDati server is running.
  • *
  • The BellaDati server URL is correct.
  • *
  • Your server's firewall allows access from the computer running the SDK.
  • *
  • The computer running the SDK doesn't block outgoing HTTP/HTTPS * connections.
  • *
  • If you're using a proxy, you may need to configure your JVM environment.
  • *
* * @author Chris Hennigfeld */ public class ConnectionException extends BellaDatiRuntimeException { /** The serialVersionUID */ private static final long serialVersionUID = 8778941786354544412L; public ConnectionException(String message) { super(message); } public ConnectionException(Throwable cause) { super(cause); } public ConnectionException(String message, Throwable cause) { super(message, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy