2
0

MethodNotAllowedException.cs 725 B

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