summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Silvester <steven.silvester@ieee.org>2022-02-03 17:03:17 -0600
committerBob Halley <halley@play-bow.org>2022-02-04 08:24:09 -0800
commit004c2aad2854813038f6b49f0b13295fa55aa390 (patch)
tree045799bae9d2b5153d33d94ddbe0fe81e6b8ac01
parent6c17aa471e133c53e3eda6c9d8fd3715dd6cdc55 (diff)
downloaddnspython-004c2aad2854813038f6b49f0b13295fa55aa390.tar.gz
Add missing types to exceptions stub
(cherry picked from commit 91838d2d488911972ddaf69aa0c507457ce4b03a)
-rw-r--r--dns/exception.pyi2
1 files changed, 2 insertions, 0 deletions
diff --git a/dns/exception.pyi b/dns/exception.pyi
index b29bfbe..dc57126 100644
--- a/dns/exception.pyi
+++ b/dns/exception.pyi
@@ -8,3 +8,5 @@ class DNSException(Exception):
class SyntaxError(DNSException): ...
class FormError(DNSException): ...
class Timeout(DNSException): ...
+class TooBig(DNSException): ...
+class UnexpectedEnd(SyntaxError): ...