diff options
author | S. Solomon Darnell | 2025-03-28 21:52:21 -0500 |
---|---|---|
committer | S. Solomon Darnell | 2025-03-28 21:52:21 -0500 |
commit | 4a52a71956a8d46fcb7294ac71734504bb09bcc2 (patch) | |
tree | ee3dc5af3b6313e921cd920906356f5d4febc4ed /.venv/lib/python3.12/site-packages/hpack/exceptions.py | |
parent | cc961e04ba734dd72309fb548a2f97d67d578813 (diff) | |
download | gn-ai-master.tar.gz |
Diffstat (limited to '.venv/lib/python3.12/site-packages/hpack/exceptions.py')
-rw-r--r-- | .venv/lib/python3.12/site-packages/hpack/exceptions.py | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/hpack/exceptions.py b/.venv/lib/python3.12/site-packages/hpack/exceptions.py new file mode 100644 index 00000000..51f5083f --- /dev/null +++ b/.venv/lib/python3.12/site-packages/hpack/exceptions.py @@ -0,0 +1,53 @@ +""" +Exceptions used in hpack. +""" +from __future__ import annotations + + +class HPACKError(Exception): + """ + The base class for all ``hpack`` exceptions. + """ + + + +class HPACKDecodingError(HPACKError): + """ + An error has been encountered while performing HPACK decoding. + """ + + + +class InvalidTableIndexError(HPACKDecodingError): + """ + An invalid table index was received. + + .. versionadded:: 4.1.0 + """ + +class InvalidTableIndex(InvalidTableIndexError): # noqa: N818 + """ + An invalid table index was received. + + .. deprecated:: 4.1.0 + Renamed to :class:`InvalidTableIndexError`, use it instead. + """ + + +class OversizedHeaderListError(HPACKDecodingError): + """ + A header list that was larger than we allow has been received. This may be + a DoS attack. + + .. versionadded:: 2.3.0 + """ + + +class InvalidTableSizeError(HPACKDecodingError): + """ + An attempt was made to change the decoder table size to a value larger than + allowed, or the list was shrunk and the remote peer didn't shrink their + table size. + + .. versionadded:: 3.0.0 + """ |