Fixed missing SearchdomainAlreadyExistsException in SearchdomainManager

This commit is contained in:
2025-12-13 17:09:40 +01:00
parent 09d709966b
commit b7761479c8
2 changed files with 5 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
namespace Server.Exceptions;
public class SearchdomainNotFoundException(string searchdomainName) : Exception($"Searchdomain with name {searchdomainName} not found.") { }
public class SearchdomainAlreadyExistsException(string searchdomainName) : Exception($"Searchdomain with name {searchdomainName} already exists.") { }