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

cloud.tianai.rpc.registory.api.exception.RpcRegistryException Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package cloud.tianai.rpc.registory.api.exception;

import cloud.tianai.rpc.common.exception.RpcException;

/**
 * @Author: 天爱有情
 * @Date: 2020/02/03 12:09
 * @Description: RPC REGISTRY 异常
 */
public class RpcRegistryException extends RpcException {

    public RpcRegistryException() {
    }

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

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

    public RpcRegistryException(Throwable cause) {
        super(cause);
    }

    public RpcRegistryException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy