Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/3.5.x_issue1430' into 3.5.x_issu…
Browse files Browse the repository at this point in the history
…e1430

# Conflicts:
#	src/backend/commons/cmdb-sdk/src/main/java/com/tencent/bk/job/common/cc/sdk/BizCmdbClient.java
#	src/backend/commons/cmdb-sdk/src/main/java/com/tencent/bk/job/common/cc/sdk/BizSetCmdbClient.java
  • Loading branch information
liuliaozhong committed Jan 17, 2023
2 parents 19b211c + bc6ab70 commit 6455a73
Showing 1 changed file with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package com.tencent.bk.job.common.exception;

import com.tencent.bk.job.common.model.error.ErrorType;
import lombok.Getter;
import lombok.ToString;

/**
* 内部服务异常--调用CMDB异常
*/
@Getter
@ToString
public class CmdbClientException extends InternalException {

public CmdbClientException(Throwable cause, Integer errorCode, Object[] errorParams) {
super(cause, errorCode, errorParams);
}

public CmdbClientException(String message, Throwable cause, Integer errorCode) {
super(message, cause, errorCode);
}

public CmdbClientException(String message, Integer errorCode) {
super(message, errorCode);
}

public CmdbClientException(Integer errorCode, Object[] errorParams) {
super(errorCode, errorParams);
}

}

0 comments on commit 6455a73

Please sign in to comment.