diff --git a/framework/src/Volo.Abp.Settings/Volo/Abp/Settings/SettingDefinitionManager.cs b/framework/src/Volo.Abp.Settings/Volo/Abp/Settings/SettingDefinitionManager.cs index 25dd30912d..35bfceb8c3 100644 --- a/framework/src/Volo.Abp.Settings/Volo/Abp/Settings/SettingDefinitionManager.cs +++ b/framework/src/Volo.Abp.Settings/Volo/Abp/Settings/SettingDefinitionManager.cs @@ -22,7 +22,7 @@ public class SettingDefinitionManager : ISettingDefinitionManager, ISingletonDep var permission = await GetOrNullAsync(name); if (permission == null) { - throw new AbpException("Undefined Template: " + name); + throw new AbpException("Undefined setting: " + name); } return permission;