From 0336daccb8a4c23d74123c19e7bd571d1de37e4e Mon Sep 17 00:00:00 2001 From: maliming Date: Tue, 11 Jul 2023 19:32:05 +0800 Subject: [PATCH] Update SettingDefinitionManager.cs --- .../Volo/Abp/Settings/SettingDefinitionManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;