NotSupportedFeedException.cs 710 B

1234567891011121314151617181920212223
  1. using System;
  2. namespace FormulaOneApp.Rss.Exceptions
  3. {
  4. public class NotSupportedFeedException : Exception
  5. {
  6. /// <summary>
  7. /// The exception that is thrown when an error occurs durin the feed parsing when the rss is not supported.
  8. /// </summary>
  9. public NotSupportedFeedException(string message)
  10. : base(message)
  11. {
  12. }
  13. /// <summary>
  14. /// The exception that is thrown when an error occurs durin the feed parsing when the rss is not supported.
  15. /// </summary>
  16. public NotSupportedFeedException(string message, Exception innerException)
  17. : base(message, innerException)
  18. {
  19. }
  20. }
  21. }