aboutsummaryrefslogtreecommitdiff
path: root/VNLib.Data.Caching.Global/Exceptions/CacheNotLoadedException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'VNLib.Data.Caching.Global/Exceptions/CacheNotLoadedException.cs')
-rw-r--r--VNLib.Data.Caching.Global/Exceptions/CacheNotLoadedException.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/VNLib.Data.Caching.Global/Exceptions/CacheNotLoadedException.cs b/VNLib.Data.Caching.Global/Exceptions/CacheNotLoadedException.cs
new file mode 100644
index 0000000..c3a3800
--- /dev/null
+++ b/VNLib.Data.Caching.Global/Exceptions/CacheNotLoadedException.cs
@@ -0,0 +1,14 @@
+namespace VNLib.Data.Caching.Global.Exceptions
+{
+ public class CacheNotLoadedException : GlobalCacheException
+ {
+ public CacheNotLoadedException()
+ { }
+
+ public CacheNotLoadedException(string? message) : base(message)
+ { }
+
+ public CacheNotLoadedException(string? message, Exception? innerException) : base(message, innerException)
+ { }
+ }
+} \ No newline at end of file