mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-20 04:13:16 +00:00
35 lines
578 B
Python
35 lines
578 B
Python
class UnpackException(Exception):
|
|
pass
|
|
|
|
|
|
class BufferFull(UnpackException):
|
|
pass
|
|
|
|
|
|
class OutOfData(UnpackException):
|
|
pass
|
|
|
|
|
|
class UnpackValueError(UnpackException, ValueError):
|
|
pass
|
|
|
|
|
|
class ExtraData(UnpackValueError):
|
|
def __init__(self, unpacked, extra):
|
|
self.unpacked = unpacked
|
|
self.extra = extra
|
|
|
|
def __str__(self):
|
|
return "unpack(b) received extra data."
|
|
|
|
|
|
class PackException(Exception):
|
|
pass
|
|
|
|
|
|
class PackValueError(PackException, ValueError):
|
|
pass
|
|
|
|
|
|
class PackOverflowError(PackValueError, OverflowError):
|
|
pass
|