namespace CrupestApi.Commons;

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