//
// create a reader for url
reader = new InputStreamReader(url.openStream());
} catch (IOException ex) {
log.fatal(".read() - Error trying to open configuration from "+url,ex);
throw new TuboConfigurationException("Error trying to open configuration from "+url);
}
//
// reading master configuration
config = append(reader,config);
//