aboutsummaryrefslogtreecommitdiff
path: root/dropped/docker/crupest-api/CrupestApi/CrupestApi.Commons/EntityNotExistException.cs
blob: 0e1f4f4cec3c18f93b8df6308bbddc08c06ff8f3 (plain)
1
2
3
4
5
6
7
8
namespace CrupestApi.Commons;

public class EntityNotExistException : Exception
{
    public EntityNotExistException() { }
    public EntityNotExistException(string message) : base(message) { }
    public EntityNotExistException(string message, Exception inner) : base(message, inner) { }
}