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

6 lines
287 B
C#

using Govor.Core;
namespace Govor.Application.Exceptions.FriendsService;
public class SendFriendRequestException(Guid fromUserId, Guid toUserId, Exception exception)
: GovorCoreException($"Something happened when we try to send request from {fromUserId} to {toUserId}", exception);