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

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


package com.alibaba.tmq.common.exception;


public class RemotingSendRequestException extends RemotingException {
    private static final long serialVersionUID = 5391285827332471674L;


    public RemotingSendRequestException(String addr) {
        this(addr, null);
    }


    public RemotingSendRequestException(String addr, Throwable cause) {
        super("send request to <" + addr + "> failed", cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy