2024-11-25 16:59:13 +04:00
|
|
|
using Contracts.SearchModels;
|
|
|
|
|
|
|
|
namespace Services.Support.Exceptions;
|
|
|
|
|
2024-11-26 00:00:31 +04:00
|
|
|
public class UserNotFoundException : EntityNotFoundException
|
2024-11-25 16:59:13 +04:00
|
|
|
{
|
|
|
|
public UserNotFoundException(string message)
|
|
|
|
: base(message) { }
|
|
|
|
public UserNotFoundException(string message, Exception innerException)
|
|
|
|
: base(message, innerException) { }
|
2024-11-26 00:00:31 +04:00
|
|
|
|
2024-11-25 16:59:13 +04:00
|
|
|
}
|