Doodle3D-Slicer/three.js-master/utils/exporters/blender/modules/msgpack/exceptions.py

30 lines
503 B
Python
Raw Normal View History

2015-06-12 15:58:26 +02:00
class UnpackException(Exception):
pass
class BufferFull(UnpackException):
pass
class OutOfData(UnpackException):
pass
class UnpackValueError(UnpackException, ValueError):
pass
class ExtraData(ValueError):
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