{ "cells": [ { "cell_type": "markdown", "metadata": { "button": false, "new_sheet": false, "run_control": { "read_only": false }, "slideshow": { "slide_type": "slide" } }, "source": [ "# Oh no! We are not ready yet!\n", "\n", "We're sorry - this page does not exist (yet). " ] }, { "cell_type": "markdown", "metadata": { "button": false, "new_sheet": false, "run_control": { "read_only": false }, "slideshow": { "slide_type": "slide" } }, "source": [ "## Finding Content\n", "\n", "Most likely, you have been looking for material that is not yet written or not yet published. Go to the [home page](/) or choose from the list of chapters." ] }, { "cell_type": "markdown", "metadata": { "button": false, "new_sheet": false, "run_control": { "read_only": false }, "slideshow": { "slide_type": "fragment" } }, "source": [ "If you think this is an error, please [report an issue](https://github.com/uds-se/fuzzingbook/issues)." ] }, { "cell_type": "markdown", "metadata": { "button": false, "new_sheet": false, "run_control": { "read_only": false }, "slideshow": { "slide_type": "slide" } }, "source": [ "## Getting Informed About New Content\n", "\n", "New chapters are coming out every week. To get notified when a new chapter (or this one) comes out, follow us on Mastodon.\n", "\n", "" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "\n", "\n", "
\n", "
\n", "
\n", "
\n", "
" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "## Error Details" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "execution": { "iopub.execute_input": "2025-10-26T21:22:15.742151Z", "iopub.status.busy": "2025-10-26T21:22:15.741847Z", "iopub.status.idle": "2025-10-26T21:22:16.453174Z", "shell.execute_reply": "2025-10-26T21:22:16.452897Z" }, "slideshow": { "slide_type": "skip" } }, "outputs": [], "source": [ "import bookutils.setup" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "execution": { "iopub.execute_input": "2025-10-26T21:22:16.454914Z", "iopub.status.busy": "2025-10-26T21:22:16.454822Z", "iopub.status.idle": "2025-10-26T21:22:16.456773Z", "shell.execute_reply": "2025-10-26T21:22:16.456488Z" }, "slideshow": { "slide_type": "fragment" } }, "outputs": [], "source": [ "class NotFoundError(Exception):\n", " def __init__(self, value=\"404\"):\n", " self.value = value\n", "\n", " def __str__(self):\n", " return repr(self.value)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "execution": { "iopub.execute_input": "2025-10-26T21:22:16.458200Z", "iopub.status.busy": "2025-10-26T21:22:16.458094Z", "iopub.status.idle": "2025-10-26T21:22:16.483179Z", "shell.execute_reply": "2025-10-26T21:22:16.482923Z" }, "slideshow": { "slide_type": "skip" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Traceback (most recent call last):\n", " File \"/var/folders/n2/xd9445p97rb3xh7m1dfx8_4h0006ts/T/ipykernel_52453/1830731544.py\", line 4, in \n", " raise NotFoundError\n", "NotFoundError: '404' (expected)\n" ] } ], "source": [ "from ExpectError import ExpectError\n", "\n", "with ExpectError():\n", " raise NotFoundError" ] } ], "metadata": { "ipub": { "bibliography": "fuzzingbook.bib", "toc": true }, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.13.4" }, "toc": { "base_numbering": 1, "nav_menu": {}, "number_sections": true, "sideBar": true, "skip_h1_title": true, "title_cell": "", "title_sidebar": "Contents", "toc_cell": false, "toc_position": {}, "toc_section_display": true, "toc_window_display": true }, "toc-autonumbering": false }, "nbformat": 4, "nbformat_minor": 2 }