
com.joe.easysocket.client.exception.SystemException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of socket-client Show documentation
Show all versions of socket-client Show documentation
socket框架,方便快速开发socket服务端和客户端
The newest version!
package com.joe.easysocket.client.exception;
/**
* 系统异常
*
* @author joe
*/
public class SystemException extends RuntimeException {
private static final long serialVersionUID = 8644970275108500846L;
public SystemException(String message) {
super(message);
}
public SystemException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy