feature #I44FT8 支持脚本语言的组件,并支持动态刷新脚本(版本特性)

This commit is contained in:
bryan31
2021-08-09 17:59:38 +08:00
parent b9e6ea8084
commit 57cb85a955
16 changed files with 191 additions and 13 deletions

View File

@@ -0,0 +1,27 @@
package com.yomahub.liteflow.script.exception;
/**
* 脚本SPI插件加载异常
* @author Bryan.Zhang
* @since 2.5.11
*/
public class ScriptSpiException extends RuntimeException {
private static final long serialVersionUID = 1L;
/** 异常信息 */
private String message;
public ScriptSpiException(String message) {
this.message = message;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
}