} catch (MalformedURLException e) {
throw new AuraRuntimeException(e);
}
// Framework JS
JavascriptGroup tempGroup = null;
try {
tempGroup = newAuraJavascriptGroup();
try {
tempGroup.parse();
} catch (IOException x) {
throw new AuraError("Unable to initialize aura client javascript", x);
}
tempGroup.postProcess();
} catch (IOException x) {
/*
* js source wasn't found, we must be in jar land, just let the files be accessed from there... however, we
* do want a hash. Question: hypothetically, could we have a hybrid with a subset of files as files, and the
* rest in jars? This wouldn't be accounted for here.