try
{
InputStream is = TableProperties.class.getResourceAsStream(DEFAULT_FILENAME);
if (is == null)
{
throw new TablePropertiesLoadException(TableProperties.class, DEFAULT_FILENAME, null);
}
defaultProperties.load(is);
}
catch (IOException e)
{
throw new TablePropertiesLoadException(TableProperties.class, DEFAULT_FILENAME, e);
}
return defaultProperties;
}