mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
13 lines
329 B
C#
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){}
|
|
|
|
} |