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

com.huaweicloud.dws.client.exception.DwsBinlogException Maven / Gradle / Ivy

/*
 * Copyright (c) Huawei Technologies Co., Ltd. 2023-2023. All rights reserved.
 */

package com.huaweicloud.dws.client.exception;

/**
 * @ProjectName: dws-connectors
 * @Description: 读取binlog异常
 * @Date: 2023/09/19 17:28
 * @Version:
 **/
public class DwsBinlogException extends RuntimeException {
    private ExceptionCode code;

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

    public DwsBinlogException(Throwable e) {
        super(e);
        this.code = ExceptionCode.GET_BINLOG_ERROR;
    }

    public DwsBinlogException(String message, Throwable e) {
        super(message, e);
        this.code = ExceptionCode.GET_BINLOG_ERROR;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy