mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2024-11-17 03:27:57 +01:00
30 lines
503 B
Python
Executable File
30 lines
503 B
Python
Executable File
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
|