public DDBeanRoot getDDBeanRoot(String filename) throws FileNotFoundException, DDBeanCreateException {
try {
return new DDBeanRootImpl(null, new URL(moduleURL, filename));
} catch (MalformedURLException e) {
throw (DDBeanCreateException) new DDBeanCreateException("Unable to construct URL for "+filename).initCause(e);
}
}