return (String) mb.invoke(context, PARAMETERS);
//Rethrow any exception as SCXMLExpressionException instance
} catch (ReferenceSyntaxException rse) {
throw new SCXMLExpressionException(rse.getMessage(), rse);
} catch (MethodNotFoundException mnfe) {
throw new SCXMLExpressionException(mnfe.getMessage(), mnfe);
} catch (EvaluationException ee) {
throw new SCXMLExpressionException(ee.getMessage(), ee);
}
}