From dc7ad57c845cc9b1b502e5e8b12ce96af4183dc4 Mon Sep 17 00:00:00 2001 From: vman Date: Fri, 18 Nov 2022 17:15:36 -0500 Subject: Add project files. --- VNLib.Data.Caching.Global/Exceptions/GlobalCacheException.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 VNLib.Data.Caching.Global/Exceptions/GlobalCacheException.cs (limited to 'VNLib.Data.Caching.Global/Exceptions/GlobalCacheException.cs') diff --git a/VNLib.Data.Caching.Global/Exceptions/GlobalCacheException.cs b/VNLib.Data.Caching.Global/Exceptions/GlobalCacheException.cs new file mode 100644 index 0000000..89305a5 --- /dev/null +++ b/VNLib.Data.Caching.Global/Exceptions/GlobalCacheException.cs @@ -0,0 +1,12 @@ +namespace VNLib.Data.Caching.Global.Exceptions +{ + public class GlobalCacheException : Exception + { + public GlobalCacheException() + { } + public GlobalCacheException(string? message) : base(message) + { } + public GlobalCacheException(string? message, Exception? innerException) : base(message, innerException) + { } + } +} \ No newline at end of file -- cgit