com.fireflysource.net.tcp.secure.exception.SecureNetException Maven / Gradle / Ivy
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);
}
}