RateLimitExceededException.cs 666 B

12345678910111213141516171819202122232425
  1. #pragma warning disable CS1591
  2. using System;
  3. namespace MediaBrowser.Common.Extensions
  4. {
  5. public class RateLimitExceededException : Exception
  6. {
  7. /// <summary>
  8. /// Initializes a new instance of the <see cref="RateLimitExceededException" /> class.
  9. /// </summary>
  10. public RateLimitExceededException()
  11. {
  12. }
  13. /// <summary>
  14. /// Initializes a new instance of the <see cref="RateLimitExceededException" /> class.
  15. /// </summary>
  16. /// <param name="message">The message.</param>
  17. public RateLimitExceededException(string message)
  18. : base(message)
  19. {
  20. }
  21. }
  22. }