MethodNotAllowedException.cs 707 B

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