me.legrange.swap.tcp.TcpException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panstamp Show documentation
Show all versions of panstamp Show documentation
A Java library for working with a network of panStamp Arduino devices
The newest version!
package me.legrange.swap.tcp;
import me.legrange.swap.SwapException;
/**
* Thrown by the TcpModem if there is a problem.
*
* @since 1.0
* @author Gideon le Grange https://github.com/GideonLeGrange *
*/
public class TcpException extends SwapException {
/** Instantiate exception
*
* @param msg Message to use
* @param cause Causing exception
*/
TcpException(String msg, Throwable cause) {
super(msg, cause);
}
}