
com.joe.easysocket.server.common.exception.UnsupportedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of socket-common Show documentation
Show all versions of socket-common Show documentation
socket框架,方便快速开发socket服务端和客户端
The newest version!
package com.joe.easysocket.server.common.exception;
/**
* 不支持异常
*
* @author joe
* @version 2018.06.21 18:40
*/
public class UnsupportedException extends SystemException {
public UnsupportedException() {
super();
}
public UnsupportedException(String message) {
super(message);
}
public UnsupportedException(String message, Throwable cause) {
super(message, cause);
}
public UnsupportedException(Throwable cause) {
super(cause);
}
protected UnsupportedException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy