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

7 lines
226 B
C#

using Govor.Core;
namespace Govor.Application.Exceptions.FriendsService;
public class RequestAlreadySentException(Guid fromId, Guid userId)
: GovorCoreException($"Request was already sent from {fromId} to {userId}") {}