if (!groupsFile.canRead())
{
throw new IllegalConfigurationException(String.format("Cannot read groups file '%s'. Please check permissions.", _path));
}
FileGroupDatabase groupDatabase = new FileGroupDatabase();
try
{
groupDatabase.setGroupFile(_path);
}
catch (Exception e)
{
throw new IllegalConfigurationException(String.format("Cannot load groups from '%s'", _path), e);
}