#pragma warning disable CS1591
using System;
namespace MediaBrowser.Common.Extensions
{
    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)
        {
        }
    }
}