com.iteaj.iot.client.ClientProtocolException 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;
import com.iteaj.iot.ProtocolException;
public class ClientProtocolException extends ProtocolException {
public ClientProtocolException(Object protocol) {
super(protocol);
}
public ClientProtocolException(String message) {
super(message);
}
public ClientProtocolException(String message, Object protocol) {
super(message, protocol);
}
public ClientProtocolException(String message, Throwable cause) {
super(message, cause);
}
public ClientProtocolException(Throwable cause, Object protocol) {
super(cause, protocol);
}
public ClientProtocolException(String message, Throwable cause, Object protocol) {
super(message, cause, protocol);
}
public ClientProtocolException(Throwable cause) {
super(cause);
}
public ClientProtocolException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy