ResourceNotFoundException.cs 725 B

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