aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-api/CrupestApi/CrupestApi.Secrets/VerifySecretException.cs
blob: c9f60a16e481356fcc707404ff83a6d3a36f6f9f (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace CrupestApi.Secrets;

public class VerifySecretException : Exception
{
    public VerifySecretException(string requestKey, string message) : base(message)
    {
        RequestKey = requestKey;
    }

    public string RequestKey { get; set; }
}