diff options
author | crupest <crupest@outlook.com> | 2022-12-02 11:04:34 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-02 13:35:35 +0800 |
commit | 300842e81a99db6da103f146d33eb47f43efc683 (patch) | |
tree | 2f80b57945408b8af83556a4efe5a92dea98e025 /docker/crupest-api/CrupestApi/CrupestApi.Secrets/VerifySecretException.cs | |
parent | 49ada0b891a93cf0f1c0dfc2cb5b1d103019b7c8 (diff) | |
download | crupest-300842e81a99db6da103f146d33eb47f43efc683.tar.gz crupest-300842e81a99db6da103f146d33eb47f43efc683.tar.bz2 crupest-300842e81a99db6da103f146d33eb47f43efc683.zip |
...
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Secrets/VerifySecretException.cs')
-rw-r--r-- | docker/crupest-api/CrupestApi/CrupestApi.Secrets/VerifySecretException.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Secrets/VerifySecretException.cs b/docker/crupest-api/CrupestApi/CrupestApi.Secrets/VerifySecretException.cs new file mode 100644 index 0000000..c9f60a1 --- /dev/null +++ b/docker/crupest-api/CrupestApi/CrupestApi.Secrets/VerifySecretException.cs @@ -0,0 +1,11 @@ +namespace CrupestApi.Secrets; + +public class VerifySecretException : Exception +{ + public VerifySecretException(string requestKey, string message) : base(message) + { + RequestKey = requestKey; + } + + public string RequestKey { get; set; } +}
\ No newline at end of file |