Example usage for org.apache.commons.scxml SCXMLExpressionException SCXMLExpressionException

List of usage examples for org.apache.commons.scxml SCXMLExpressionException SCXMLExpressionException

Introduction

In this page you can find the example usage for org.apache.commons.scxml SCXMLExpressionException SCXMLExpressionException.

Prototype

public SCXMLExpressionException(final String message, final Throwable cause) 

Source Link

Usage

From source file:no.hal.scxml.javascript.JavascriptEvaluator.java

protected SCXMLExpressionException scxmlEvalException(String expr, Exception e) {
    return new SCXMLExpressionException(e + ", when evaluating \"" + expr + "\"", e);
}