Examples of RuntimeExpressionException


Examples of com.starflow.wf.engine.core.expression.RuntimeExpressionException

      if(result instanceof Boolean && (Boolean)result) {
        return true;
      } else
        return false;
    } catch (Exception e) {
      throw new RuntimeExpressionException("环节分支线表达式【"+expression+"】解析不正确", e);
    }
  }
View Full Code Here

Examples of org.apache.camel.RuntimeExpressionException

            case String:
            default:
                return evaluateAsString(exchange);
            }
        } catch (Exception e) {
            throw new RuntimeExpressionException(e);
        }
    }
View Full Code Here

Examples of org.apache.camel.RuntimeExpressionException

    public boolean matches(Exchange exchange) {
        try {
            List list = evaluateAsList(exchange);
            return matches(exchange, list);
        } catch (Exception e) {
            throw new RuntimeExpressionException(e);
        }
    }
View Full Code Here

Examples of org.apache.camel.RuntimeExpressionException

            case String:
            default:
                return evaluateAsString(exchange);
            }
        } catch (Exception e) {
            throw new RuntimeExpressionException(e);
        }
    }
View Full Code Here

Examples of org.apache.camel.RuntimeExpressionException

        LOG.debug("Matches: {} for exchange: {}", expression, exchange);
        try {
            List<?> list = evaluateAsList(exchange);
            return matches(exchange, list);
        } catch (Exception e) {
            throw new RuntimeExpressionException(e);
        }
    }
View Full Code Here

Examples of org.apache.camel.RuntimeExpressionException

            list = Collections.singletonList(in.getBody());
        }
        try {
            return query.execute(list).getResults();
        } catch (QueryExecutionException e) {
            throw new RuntimeExpressionException(e);
        }
    }
View Full Code Here

Examples of org.apache.camel.RuntimeExpressionException

            case String:
            default:
                return evaluateAsString(exchange);
            }
        } catch (Exception e) {
            throw new RuntimeExpressionException(e);
        }
    }
View Full Code Here

Examples of org.apache.camel.RuntimeExpressionException

    public boolean matches(E exchange) {
        try {
            List list = evaluateAsList(exchange);
            return matches(exchange, list);
        } catch (Exception e) {
            throw new RuntimeExpressionException(e);
        }
    }
View Full Code Here

Examples of org.apache.camel.RuntimeExpressionException

            case String:
            default:
                return evaluateAsString(exchange);
            }
        } catch (Exception e) {
            throw new RuntimeExpressionException(e);
        }
    }
View Full Code Here

Examples of org.apache.camel.RuntimeExpressionException

    public boolean matches(Exchange exchange) {
        try {
            List list = evaluateAsList(exchange);
            return matches(exchange, list);
        } catch (Exception e) {
            throw new RuntimeExpressionException(e);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.