in ddm-rrm-business-process-group-management/src/main/java/com/epam/digital/data/platform/management/groups/validation/BpGroupingValidator.java [74:83]
private static void validaGroupName(GroupDetails group) {
final var name = group.getName();
if (name == null) {
throw new GroupNameRequiredException("Group name is mandatory");
}
if (!Pattern.matches(GROUP_NAME_REGEXP, name)) {
throw new GroupNameRegexException("Name is not match with regex");
}
}