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

com.iteaj.iot.modbus.ModbusProtocolException Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
package com.iteaj.iot.modbus;

import com.iteaj.iot.ProtocolException;

public class ModbusProtocolException extends ProtocolException {

    public ModbusProtocolException(Object protocol) {
        super(protocol);
    }

    public ModbusProtocolException(String message) {
        super(message);
    }

    public ModbusProtocolException(String message, Object protocol) {
        super(message, protocol);
    }

    public ModbusProtocolException(String message, Throwable cause) {
        super(message, cause);
    }

    public ModbusProtocolException(Throwable cause) {
        super(cause);
    }

    public ModbusProtocolException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy