From dc7ad57c845cc9b1b502e5e8b12ce96af4183dc4 Mon Sep 17 00:00:00 2001 From: vman Date: Fri, 18 Nov 2022 17:15:36 -0500 Subject: Add project files. --- .../Exceptions/CacheNotLoadedException.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 VNLib.Data.Caching.Global/Exceptions/CacheNotLoadedException.cs (limited to 'VNLib.Data.Caching.Global/Exceptions/CacheNotLoadedException.cs') 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 -- cgit