public async Task <Podcast> GetPodcastAsync(string feedUrl)
        {
            try
            {
                var podcast = await feedParser.GetPodcastAsync(feedUrl);

                return(podcast);
            }
            catch (Exception ex)
            {
                throw new GetPodcastException(feedUrl, ex);
            }
        }