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

com.fireflysource.net.tcp.secure.exception.SecureNetException Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.fireflysource.net.tcp.secure.exception;

/**
 * @author Pengtao Qiu
 */
public class SecureNetException extends IllegalStateException {
    public SecureNetException(String msg) {
        super(msg);
    }

    public SecureNetException(String msg, Throwable t) {
        super(msg, t);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy