various errors: fix base class (#3702)

This commit is contained in:
Shantanu
2020-02-01 09:15:23 -08:00
committed by GitHub
parent 123d2cb093
commit 4d698711ea
3 changed files with 3 additions and 3 deletions

View File

@@ -41,5 +41,5 @@ else:
def a2b_hex(hexstr: _Ascii) -> bytes: ...
def unhexlify(hexlify: _Ascii) -> bytes: ...
class Error(Exception): ...
class Error(ValueError): ...
class Incomplete(Exception): ...