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

link.jfire.socket.socketserver.exception.ServerSocketException Maven / Gradle / Ivy

Go to download

Jfire - socket is a server-side framework based on AIO. Users only need a simple implementation of a business logic processing interface can be the business data processing. The framework provides the client and server at the same time. Have strong connection capacity. Single server provides tens of thousands of connections.

The newest version!
package link.jfire.socket.socketserver.exception;

public class ServerSocketException extends Exception
{
    
    /**
     * 
     */
    private static final long serialVersionUID = 1011661639624817862L;
    
    public ServerSocketException()
    {
        
    }
    
    public ServerSocketException(String msg)
    {
        super(msg);
    }
    
    public ServerSocketException(String msg, Throwable e)
    {
        super(msg, e);
    }
    
    /**
     * 覆盖原有的jdk方法,不再重新填充堆栈信息,保证了新能
     */
    public Throwable fillInStackTrace()
    {
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy