mirror of
				https://github.com/msgpack/msgpack-python.git
				synced 2025-10-31 17:40:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			503 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			503 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 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
 | 
