aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Extensions
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-06-23 12:08:03 -0400
committerGitHub <noreply@github.com>2017-06-23 12:08:03 -0400
commitad5ceb2cb4352270598c226767ab78460fe6718a (patch)
tree1a804fbb76aeb5205a065d3f742609e7bab4020e /MediaBrowser.Common/Extensions
parentd4b50a18e1c639f98cb26250c4d1dccbfcc49185 (diff)
parent023952d04df3765ee5574915f0a84903bb97a748 (diff)
Merge pull request #2723 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Common/Extensions')
-rw-r--r--MediaBrowser.Common/Extensions/ResourceNotFoundException.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs b/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs
index 403236b3d..86a974229 100644
--- a/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs
+++ b/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs
@@ -25,4 +25,25 @@ namespace MediaBrowser.Common.Extensions
}
}
+
+ public class RateLimitExceededException : Exception
+ {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="RateLimitExceededException" /> class.
+ /// </summary>
+ public RateLimitExceededException()
+ {
+
+ }
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="RateLimitExceededException" /> class.
+ /// </summary>
+ /// <param name="message">The message.</param>
+ public RateLimitExceededException(string message)
+ : base(message)
+ {
+
+ }
+ }
}