removed MsgpackBaseException

This commit is contained in:
palaviv 2016-02-12 15:39:50 +02:00
parent 1183eff688
commit e15085db03
2 changed files with 13 additions and 15 deletions

View file

@ -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