Java Code Examples for org.apache.rocketmq.common.help.FAQUrl#attachDefaultURL()

The following examples show how to use org.apache.rocketmq.common.help.FAQUrl#attachDefaultURL() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MQClientException.java    From rocketmq with Apache License 2.0 4 votes vote down vote up
public MQClientException(String errorMessage, Throwable cause) {
    super(FAQUrl.attachDefaultURL(errorMessage), cause);
    this.responseCode = -1;
    this.errorMessage = errorMessage;
}
 
Example 2
Source File: MQClientException.java    From rocketmq_trans_message with Apache License 2.0 4 votes vote down vote up
public MQClientException(String errorMessage, Throwable cause) {
    super(FAQUrl.attachDefaultURL(errorMessage), cause);
    this.responseCode = -1;
    this.errorMessage = errorMessage;
}
 
Example 3
Source File: MQBrokerException.java    From rocketmq_trans_message with Apache License 2.0 4 votes vote down vote up
public MQBrokerException(int responseCode, String errorMessage) {
    super(FAQUrl.attachDefaultURL("CODE: " + UtilAll.responseCode2String(responseCode) + "  DESC: "
        + errorMessage));
    this.responseCode = responseCode;
    this.errorMessage = errorMessage;
}
 
Example 4
Source File: MQClientException.java    From rocketmq-all-4.1.0-incubating with Apache License 2.0 4 votes vote down vote up
public MQClientException(int responseCode, String errorMessage) {
    super(FAQUrl.attachDefaultURL("CODE: " + UtilAll.responseCode2String(responseCode) + "  DESC: "
        + errorMessage));
    this.responseCode = responseCode;
    this.errorMessage = errorMessage;
}
 
Example 5
Source File: MQClientException.java    From rocketmq-all-4.1.0-incubating with Apache License 2.0 4 votes vote down vote up
public MQClientException(String errorMessage, Throwable cause) {
    super(FAQUrl.attachDefaultURL(errorMessage), cause);
    this.responseCode = -1;
    this.errorMessage = errorMessage;
}
 
Example 6
Source File: MQBrokerException.java    From rocketmq-all-4.1.0-incubating with Apache License 2.0 4 votes vote down vote up
public MQBrokerException(int responseCode, String errorMessage) {
    super(FAQUrl.attachDefaultURL("CODE: " + UtilAll.responseCode2String(responseCode) + "  DESC: "
        + errorMessage));
    this.responseCode = responseCode;
    this.errorMessage = errorMessage;
}
 
Example 7
Source File: MQClientException.java    From DDMQ with Apache License 2.0 4 votes vote down vote up
public MQClientException(int responseCode, String errorMessage) {
    super(FAQUrl.attachDefaultURL("CODE: " + UtilAll.responseCode2String(responseCode) + "  DESC: "
        + errorMessage));
    this.responseCode = responseCode;
    this.errorMessage = errorMessage;
}
 
Example 8
Source File: MQClientException.java    From DDMQ with Apache License 2.0 4 votes vote down vote up
public MQClientException(String errorMessage, Throwable cause) {
    super(FAQUrl.attachDefaultURL(errorMessage), cause);
    this.responseCode = -1;
    this.errorMessage = errorMessage;
}
 
Example 9
Source File: MQBrokerException.java    From DDMQ with Apache License 2.0 4 votes vote down vote up
public MQBrokerException(int responseCode, String errorMessage) {
    super(FAQUrl.attachDefaultURL("CODE: " + UtilAll.responseCode2String(responseCode) + "  DESC: "
        + errorMessage));
    this.responseCode = responseCode;
    this.errorMessage = errorMessage;
}
 
Example 10
Source File: MQClientException.java    From rocketmq_trans_message with Apache License 2.0 4 votes vote down vote up
public MQClientException(int responseCode, String errorMessage) {
    super(FAQUrl.attachDefaultURL("CODE: " + UtilAll.responseCode2String(responseCode) + "  DESC: "
        + errorMessage));
    this.responseCode = responseCode;
    this.errorMessage = errorMessage;
}
 
Example 11
Source File: MQBrokerException.java    From DDMQ with Apache License 2.0 4 votes vote down vote up
public MQBrokerException(int responseCode, String errorMessage) {
    super(FAQUrl.attachDefaultURL("CODE: " + UtilAll.responseCode2String(responseCode) + "  DESC: "
        + errorMessage));
    this.responseCode = responseCode;
    this.errorMessage = errorMessage;
}
 
Example 12
Source File: MQBrokerException.java    From rocketmq with Apache License 2.0 4 votes vote down vote up
public MQBrokerException(int responseCode, String errorMessage) {
    super(FAQUrl.attachDefaultURL("CODE: " + UtilAll.responseCode2String(responseCode) + "  DESC: "
        + errorMessage));
    this.responseCode = responseCode;
    this.errorMessage = errorMessage;
}
 
Example 13
Source File: MQClientException.java    From rocketmq-read with Apache License 2.0 4 votes vote down vote up
public MQClientException(int responseCode, String errorMessage) {
    super(FAQUrl.attachDefaultURL("CODE: " + UtilAll.responseCode2String(responseCode) + "  DESC: "
        + errorMessage));
    this.responseCode = responseCode;
    this.errorMessage = errorMessage;
}
 
Example 14
Source File: MQClientException.java    From rocketmq-read with Apache License 2.0 4 votes vote down vote up
public MQClientException(String errorMessage, Throwable cause) {
    super(FAQUrl.attachDefaultURL(errorMessage), cause);
    this.responseCode = -1;
    this.errorMessage = errorMessage;
}
 
Example 15
Source File: MQBrokerException.java    From rocketmq-read with Apache License 2.0 4 votes vote down vote up
public MQBrokerException(int responseCode, String errorMessage) {
    super(FAQUrl.attachDefaultURL("CODE: " + UtilAll.responseCode2String(responseCode) + "  DESC: "
        + errorMessage));
    this.responseCode = responseCode;
    this.errorMessage = errorMessage;
}
 
Example 16
Source File: MQClientException.java    From rocketmq-4.3.0 with Apache License 2.0 4 votes vote down vote up
public MQClientException(int responseCode, String errorMessage) {
    super(FAQUrl.attachDefaultURL("CODE: " + UtilAll.responseCode2String(responseCode) + "  DESC: "
        + errorMessage));
    this.responseCode = responseCode;
    this.errorMessage = errorMessage;
}
 
Example 17
Source File: MQClientException.java    From rocketmq-4.3.0 with Apache License 2.0 4 votes vote down vote up
public MQClientException(String errorMessage, Throwable cause) {
    super(FAQUrl.attachDefaultURL(errorMessage), cause);
    this.responseCode = -1;
    this.errorMessage = errorMessage;
}
 
Example 18
Source File: MQBrokerException.java    From rocketmq-4.3.0 with Apache License 2.0 4 votes vote down vote up
public MQBrokerException(int responseCode, String errorMessage) {
    super(FAQUrl.attachDefaultURL("CODE: " + UtilAll.responseCode2String(responseCode) + "  DESC: "
        + errorMessage));
    this.responseCode = responseCode;
    this.errorMessage = errorMessage;
}
 
Example 19
Source File: MQClientException.java    From DDMQ with Apache License 2.0 4 votes vote down vote up
public MQClientException(int responseCode, String errorMessage) {
    super(FAQUrl.attachDefaultURL("CODE: " + UtilAll.responseCode2String(responseCode) + "  DESC: "
        + errorMessage));
    this.responseCode = responseCode;
    this.errorMessage = errorMessage;
}
 
Example 20
Source File: MQClientException.java    From DDMQ with Apache License 2.0 4 votes vote down vote up
public MQClientException(String errorMessage, Throwable cause) {
    super(FAQUrl.attachDefaultURL(errorMessage), cause);
    this.responseCode = -1;
    this.errorMessage = errorMessage;
}