We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e36476 commit b2a8ce6Copy full SHA for b2a8ce6
msgpack/exceptions.py
@@ -1,5 +1,5 @@
1
class UnpackException(Exception):
2
- pass
+ """Deprecated. Use Exception instead to catch all exception during unpacking."""
3
4
5
class BufferFull(UnpackException):
@@ -11,7 +11,7 @@ class OutOfData(UnpackException):
11
12
13
class UnpackValueError(UnpackException, ValueError):
14
+ """Deprecated. Use ValueError instead."""
15
16
17
class ExtraData(UnpackValueError):
0 commit comments