
me.legrange.swap.tcp.TcpException Maven / Gradle / Ivy
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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy