#!/usr/bin/env python # coding: utf-8 # # Oh no! We are not ready yet! # # We're sorry - this page does not exist (yet). # ## Finding Content # # Most likely, you have been looking for material that is not yet written or not yet published. Go to the [home page](__SITE_HTML__) or choose from this list of chapters: # #
    # <__STRUCTURED_ALL_CHAPTERS_MENU__> #
# If you think this is an error, please [report an issue](__GITHUB_HTML__/issues/). # ## Getting Informed About New Content # # New chapters are coming out every week. To get notified when a new chapter (or this one) comes out, follow us on Mastodon. # # # # #
#
#
#
#
# ## Error Details # In[1]: import bookutils.setup # In[2]: class NotFoundError(Exception): def __init__(self, value="404"): self.value = value def __str__(self): return repr(self.value) # In[3]: from ExpectError import ExpectError with ExpectError(): raise NotFoundError