diff options
author | crupest <crupest@outlook.com> | 2022-12-04 19:54:40 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-20 20:32:52 +0800 |
commit | 131e40d79dff8622464de3285588945beab4e39b (patch) | |
tree | 5c15d4e4dbd19730ff6cbe242608b7adeed91de0 /docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/DatabaseInternalException.cs | |
parent | 476a6141b71d3def4a777ce934fec0d0bca8cd28 (diff) | |
download | crupest-131e40d79dff8622464de3285588945beab4e39b.tar.gz crupest-131e40d79dff8622464de3285588945beab4e39b.tar.bz2 crupest-131e40d79dff8622464de3285588945beab4e39b.zip |
Develop secret api. v5
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/DatabaseInternalException.cs')
-rw-r--r-- | docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/DatabaseInternalException.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/DatabaseInternalException.cs b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/DatabaseInternalException.cs new file mode 100644 index 0000000..77b3c66 --- /dev/null +++ b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/DatabaseInternalException.cs @@ -0,0 +1,12 @@ +namespace CrupestApi.Commons.Crud; + +[System.Serializable] +public class DatabaseInternalException : System.Exception +{ + public DatabaseInternalException() { } + public DatabaseInternalException(string message) : base(message) { } + public DatabaseInternalException(string message, System.Exception inner) : base(message, inner) { } + protected DatabaseInternalException( + System.Runtime.Serialization.SerializationInfo info, + System.Runtime.Serialization.StreamingContext context) : base(info, context) { } +}
\ No newline at end of file |