From a86b71899ec52c44ddc6c3018e8cc5e9d7ff4d62 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Thu, 27 Dec 2018 18:27:57 -0500 Subject: Add GPL modules --- .../Extensions/ResourceNotFoundException.cs | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 MediaBrowser.Common/Extensions/ResourceNotFoundException.cs (limited to 'MediaBrowser.Common/Extensions/ResourceNotFoundException.cs') diff --git a/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs b/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs new file mode 100644 index 000000000..89e20b1b4 --- /dev/null +++ b/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs @@ -0,0 +1,63 @@ +using System; + +namespace MediaBrowser.Common.Extensions +{ + /// + /// Class ResourceNotFoundException + /// + public class ResourceNotFoundException : Exception + { + /// + /// Initializes a new instance of the class. + /// + public ResourceNotFoundException() + { + + } + + /// + /// Initializes a new instance of the class. + /// + /// The message. + public ResourceNotFoundException(string message) + : base(message) + { + + } + } + + public class RemoteServiceUnavailableException : Exception + { + public RemoteServiceUnavailableException() + { + + } + + public RemoteServiceUnavailableException(string message) + : base(message) + { + + } + } + + public class RateLimitExceededException : Exception + { + /// + /// Initializes a new instance of the class. + /// + public RateLimitExceededException() + { + + } + + /// + /// Initializes a new instance of the class. + /// + /// The message. + public RateLimitExceededException(string message) + : base(message) + { + + } + } +} -- cgit v1.2.3