* @return
* @throws ProfileManagementException
*/
public AvailableProfileConfigurationDTO getAllAvailableProfileConfiguraions()
throws ProfileManagementException {
AvailableProfileConfigurationDTO availableConfiguration = null;
try {
availableConfiguration = new AvailableProfileConfigurationDTO();
availableConfiguration.setDialects(getDialects());
return availableConfiguration;
} catch (Exception e) {
log.error("Error while loading available profile configurations", e);
throw new ProfileManagementException(
"Error while loading available profile configurations", e);