namespace GFramework.Core.Abstractions.Localization;
///
/// 本地化键未找到异常
///
public class LocalizationKeyNotFoundException : LocalizationException
{
///
/// 初始化键未找到异常
///
/// 表名
/// 键名
public LocalizationKeyNotFoundException(string tableName, string key)
: base($"Localization key '{key}' not found in table '{tableName}'")
{
TableName = tableName;
Key = key;
}
///
/// 表名
///
public string TableName { get; }
///
/// 键名
///
public string Key { get; }
}