From 88477dffdd0811a5613dba0aa1db4818bf4fd058 Mon Sep 17 00:00:00 2001 From: crupest Date: Mon, 19 Dec 2022 12:24:54 +0800 Subject: Develop secret api. v43 --- .../CrupestApi.Secrets/SecretNotExistException.cs | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretNotExistException.cs (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretNotExistException.cs') 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 -- cgit v1.2.3