aboutsummaryrefslogtreecommitdiff
path: root/VNLib.Data.Caching.Global/Exceptions/GlobalCacheException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'VNLib.Data.Caching.Global/Exceptions/GlobalCacheException.cs')
-rw-r--r--VNLib.Data.Caching.Global/Exceptions/GlobalCacheException.cs12
1 files changed, 12 insertions, 0 deletions
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