org.tarantool.CommunicationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector Show documentation
Show all versions of connector Show documentation
Tarantool client for java
package org.tarantool;
/**
*
* CommunicationException class.
*
*
* @author dgreen
* @version $Id: $
*/
public class CommunicationException extends RuntimeException {
/**
*
* Constructor for CommunicationException.
*
*
* @param message
* a {@link java.lang.String} object.
* @param cause
* a {@link java.lang.Throwable} object.
*/
public CommunicationException(String message, Throwable cause) {
super(message, cause);
}
/**
*
* Constructor for CommunicationException.
*
*
* @param message
* a {@link java.lang.String} object.
*/
public CommunicationException(String message) {
super(message);
}
private static final long serialVersionUID = 1L;
}