mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
694750e25d
+ Tests + QueryableExtensions. It is an add-on that allows you to implement exceptions if the returned List would be empty.
11 lines
307 B
C#
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){}
|
|
} |