RateLimitExceededException.cs 683 B

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