// For license of this file, see /LICENSE.md. #include "exceptions/feedfetchexception.h" FeedFetchException::FeedFetchException(Feed::Status feed_status, QString message) : ApplicationException(message), m_feedStatus(feed_status) {} Feed::Status FeedFetchException::feedStatus() const { return m_feedStatus; }