aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretNotExistException.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-12-19 12:24:54 +0800
committercrupest <crupest@outlook.com>2022-12-20 20:32:53 +0800
commite9b958cc41a3b941d878fd455e297a50e050be1a (patch)
tree1e431c0b2038cde586be12cfb96c6c2da75b11e8 /docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretNotExistException.cs
parentf73342cb6b0592d3a6310f9a12fd40b4bf218e5c (diff)
downloadcrupest-e9b958cc41a3b941d878fd455e297a50e050be1a.tar.gz
crupest-e9b958cc41a3b941d878fd455e297a50e050be1a.tar.bz2
crupest-e9b958cc41a3b941d878fd455e297a50e050be1a.zip
Develop secret api. v43
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretNotExistException.cs')
-rw-r--r--docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretNotExistException.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretNotExistException.cs b/docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretNotExistException.cs
deleted file mode 100644
index ad082ee..0000000
--- a/docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretNotExistException.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-namespace CrupestApi.Secrets;
-
-public class SecretNotExistException : Exception
-{
- public SecretNotExistException(string requestSecret)
- : base($"Request secret {requestSecret} not found.")
- {
- RequestSecret = requestSecret;
- }
-
- public SecretNotExistException(string requestSecret, string message)
- : base(message)
- {
- RequestSecret = requestSecret;
- }
-
- public string RequestSecret { get; set; }
-} \ No newline at end of file