修改validate的catch为Exception

This commit is contained in:
everywhere.z
2023-05-04 00:36:41 +08:00
parent 2be0ded060
commit b74a305eea

View File

@@ -166,7 +166,7 @@ public class LiteFlowChainELBuilder {
try {
LiteFlowChainELBuilder.createChain().setEL(elStr);
return Boolean.TRUE;
} catch (ELParseException e) {
} catch (Exception e) {
LOG.error(e.getMessage());
}
return Boolean.FALSE;