aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Extensions/RateLimitExceededException.cs
blob: 7c7bdaa92f0ced022c3077f9bd5ef0d6201ad428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#nullable enable
#pragma warning disable CS1591

using System;

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)
        {
        }
    }
}