Files
Govor/Govor.Application/Exceptions/FriendsService/SearchUsersException.cs
2025-06-27 19:12:31 +07:00

13 lines
329 B
C#

using Govor.Core;
namespace Govor.Application.Exceptions.FriendsService;
public class SearchUsersException : GovorCoreException
{
public SearchUsersException(string message, Exception innerException)
: base(message, innerException){}
public SearchUsersException(string message)
: base(message){}
}