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

com.yomahub.liteflow.parser.zk.exception.ZkException Maven / Gradle / Ivy

There is a newer version: 2.12.4.2
Show newest version

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

public class ZkException extends RuntimeException {

	private static final long serialVersionUID = 1L;

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

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

	public ZkException(Throwable cause) {
		super(cause);
		this.message = cause.getMessage();
	}

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy