diff --git a/framework/src/Volo.Abp.Features/Volo/Abp/Features/FeatureDefinitionContext.cs b/framework/src/Volo.Abp.Features/Volo/Abp/Features/FeatureDefinitionContext.cs index 82ea711540..1a64f4a38c 100644 --- a/framework/src/Volo.Abp.Features/Volo/Abp/Features/FeatureDefinitionContext.cs +++ b/framework/src/Volo.Abp.Features/Volo/Abp/Features/FeatureDefinitionContext.cs @@ -18,7 +18,7 @@ public class FeatureDefinitionContext : IFeatureDefinitionContext if (Groups.ContainsKey(name)) { - throw new AbpException($"There is already an existing permission group with name: {name}"); + throw new AbpException($"There is already an existing feature group with name: {name}"); } return Groups[name] = new FeatureGroupDefinition(name, displayName);