mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-20 04:13:16 +00:00
removed MsgpackBaseException
This commit is contained in:
parent
1183eff688
commit
e15085db03
2 changed files with 13 additions and 15 deletions
|
@ -1,8 +1,4 @@
|
|||
class MsgpackBaseException(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class UnpackException(MsgpackBaseException):
|
||||
class UnpackException(Exception):
|
||||
pass
|
||||
|
||||
|
||||
|
@ -26,9 +22,11 @@ class ExtraData(ValueError):
|
|||
def __str__(self):
|
||||
return "unpack(b) received extra data."
|
||||
|
||||
class PackException(MsgpackBaseException):
|
||||
|
||||
class PackException(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class PackValueError(PackException, ValueError):
|
||||
pass
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue