.getResourceAsStream(DT_DEFAULT_PROPERTIES);
Reader reader = new InputStreamReader(propertiesStream, "UTF-8");
propertiesResource.load(reader);
}
catch (IOException e) {
throw new ConfigurationLoadingException("Unable to load the default configuration file", e);
}
finally {
if (propertiesStream != null) {
try {
propertiesStream.close();