Currently, ReadArticle.get_article() raises a RuntimeError should the URL be incorrect. I believe we should either:
- Add an
.has_article(url) methods that returns a boolean informing about the existence of the article
- Raise a custom, usable Exception like
ArticleNotFound or something.