com.iteaj.iot.client.http.HttpProtocolException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot-client Show documentation
Show all versions of iot-client Show documentation
基于netty的tcp, http, udp等协议的客户端
The newest version!
package com.iteaj.iot.client.http;
import com.iteaj.iot.ProtocolException;
public class HttpProtocolException extends ProtocolException {
public HttpProtocolException(Object protocol) {
super(protocol);
}
public HttpProtocolException(String message) {
super(message);
}
public HttpProtocolException(String message, Object protocol) {
super(message, protocol);
}
public HttpProtocolException(String message, Throwable cause) {
super(message, cause);
}
public HttpProtocolException(Throwable cause) {
super(cause);
}
public HttpProtocolException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy