diff options
author | crupest <crupest@outlook.com> | 2022-12-04 18:11:06 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-20 20:32:52 +0800 |
commit | 5da5ebbad1d84390009038a9231977d7ed7e2d60 (patch) | |
tree | 12eda3d48fefb733b11e675724481d75dc65d319 /docker/crupest-api/CrupestApi/CrupestApi.Commons/EntityNotExistException.cs | |
parent | 92b93d875c3f61312d2221e3b4d15f5a2e8d7a11 (diff) | |
download | crupest-5da5ebbad1d84390009038a9231977d7ed7e2d60.tar.gz crupest-5da5ebbad1d84390009038a9231977d7ed7e2d60.tar.bz2 crupest-5da5ebbad1d84390009038a9231977d7ed7e2d60.zip |
Develop secret api. v4
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons/EntityNotExistException.cs')
-rw-r--r-- | docker/crupest-api/CrupestApi/CrupestApi.Commons/EntityNotExistException.cs | 8 |
1 files changed, 8 insertions, 0 deletions
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) { } +} |