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

com.alibaba.tmq.common.exception.RemotingException Maven / Gradle / Ivy


package com.alibaba.tmq.common.exception;


public class RemotingException extends Exception {
    private static final long serialVersionUID = -5690687334570505110L;


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


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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy