using System; namespace FormulaOneApp.Rss.Exceptions { public class NotSupportedFeedException : Exception { /// /// The exception that is thrown when an error occurs durin the feed parsing when the rss is not supported. /// public NotSupportedFeedException(string message) : base(message) { } /// /// The exception that is thrown when an error occurs durin the feed parsing when the rss is not supported. /// public NotSupportedFeedException(string message, Exception innerException) : base(message, innerException) { } } }