*/
public static SCXML digest(final URL scxmlURL,
final ErrorHandler errHandler, final List customActions)
throws IOException, SAXException, ModelException {
SCXML scxml = null;
Digester scxmlDigester = SCXMLDigester
.newInstance(null, new URLResolver(scxmlURL), customActions);
scxmlDigester.setErrorHandler(errHandler);
try {