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

com.yomahub.liteflow.parser.etcd.exception.EtcdException Maven / Gradle / Ivy

There is a newer version: 2.12.4.5
Show newest version

package com.yomahub.liteflow.parser.etcd.exception;

/**
 * Etcd解析异常
 *
 * @author zendwang
 * @since 2.9.0
 */
public class EtcdException extends RuntimeException {

	private static final long serialVersionUID = 1L;

	/** 异常信息 */
	private String message;

	public EtcdException(String message) {
		this.message = message;
	}

	@Override
	public String getMessage() {
		return message;
	}

	public void setMessage(String message) {
		this.message = message;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy