Files
Govor/Govor.Data/Repositories/Exceptions/NotFoundException.cs
Artemy 694750e25d Working on the UserRepository functionality
+ Tests
+ QueryableExtensions. It is an add-on that allows you to implement exceptions if the returned List would be empty.
2025-06-17 13:11:56 +07:00

11 lines
307 B
C#

using Govor.Core;
namespace Govor.Data.Repositories.Exceptions;
public class NotFoundException : GovorCoreException
{
public NotFoundException(string message)
: base(message) {}
public NotFoundException(string message, Exception innerException)
: base(message, innerException){}
}