Revert "add correct business exception handling"

This reverts commit b1693b2894.
This commit is contained in:
Alex Bezdieniezhnykh
2025-04-16 20:47:01 +03:00
parent b1693b2894
commit c1f47f0e8d
7 changed files with 12 additions and 45 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ public class User
public UserConfig? UserConfig { get; set; } = null!;
public static string GetCacheKey(string? email) =>
public static string GetCacheKey(string email) =>
string.IsNullOrEmpty(email) ? "" : $"{nameof(User)}.{email}";
}