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

me.legrange.swap.tcp.TcpException Maven / Gradle / Ivy

There is a newer version: 2.2
Show 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);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy