jadex.platform.service.awareness.discovery.ConnectionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-platform Show documentation
Show all versions of jadex-platform Show documentation
The Jadex platform package contains implementations of platform services as well as the platform component itself.
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);
}
}