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

jadex.platform.service.awareness.discovery.ConnectionException Maven / Gradle / Ivy

Go to download

The Jadex platform package contains implementations of platform services as well as the platform component itself.

There is a newer version: 3.0.117
Show newest version
package jadex.platform.service.awareness.discovery;

/**
 *  Exception denoting that discovery cannot get access to
 *  the underlying 
 */
public class ConnectionException extends RuntimeException
{
	/**
	 *  Create a new exception.
	 */
    public ConnectionException(String message) 
    {
    	super(message);
    }

    /**
	 *  Create a new exception.
	 */
    public ConnectionException(Throwable cause) 
    {
        super(cause);
    }
    
    /**
	 *  Create a new exception.
	 */
    public ConnectionException(String message, Throwable cause) 
    {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy