aboutsummaryrefslogtreecommitdiff
path: root/VNLib.Data.Caching.Global/Exceptions/CacheNotLoadedException.cs
diff options
context:
space:
mode:
authorLibravatar vman <public@vaughnnugent.com>2022-11-18 17:15:36 -0500
committerLibravatar vman <public@vaughnnugent.com>2022-11-18 17:15:36 -0500
commitdc7ad57c845cc9b1b502e5e8b12ce96af4183dc4 (patch)
tree0ac786ac1fe0f1c7cc96c81c92363e6f760d036a /VNLib.Data.Caching.Global/Exceptions/CacheNotLoadedException.cs
parent647ee25d7f71d3984a951a83a73b7c1aa506a402 (diff)
Add project files.
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