mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
7 lines
226 B
C#
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}") {}
|