From 5da5ebbad1d84390009038a9231977d7ed7e2d60 Mon Sep 17 00:00:00 2001 From: crupest Date: Sun, 4 Dec 2022 18:11:06 +0800 Subject: Develop secret api. v4 --- .../CrupestApi/CrupestApi.Commons/EntityNotExistException.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 docker/crupest-api/CrupestApi/CrupestApi.Commons/EntityNotExistException.cs (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons/EntityNotExistException.cs') diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Commons/EntityNotExistException.cs b/docker/crupest-api/CrupestApi/CrupestApi.Commons/EntityNotExistException.cs new file mode 100644 index 0000000..0e1f4f4 --- /dev/null +++ b/docker/crupest-api/CrupestApi/CrupestApi.Commons/EntityNotExistException.cs @@ -0,0 +1,8 @@ +namespace CrupestApi.Commons; + +public class EntityNotExistException : Exception +{ + public EntityNotExistException() { } + public EntityNotExistException(string message) : base(message) { } + public EntityNotExistException(string message, Exception inner) : base(message, inner) { } +} -- cgit v1.2.3