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

com.yomahub.liteflow.exception.ScriptBeanMethodInvokeException Maven / Gradle / Ivy

The newest version!
package com.yomahub.liteflow.exception;

/**
 * ScriptBean的方法无法被调用异常
 *
 * @author Bryan.Zhang
 */
public class ScriptBeanMethodInvokeException extends RuntimeException {

	private static final long serialVersionUID = 1L;

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

	public ScriptBeanMethodInvokeException(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