Unhashable key encountered during map unpacking. The serialized map cannot be deserialized into a Python dictionary.
| 174 | |
| 175 | |
| 176 | class UnhashableKeyException(UnpackException): |
| 177 | """ |
| 178 | Unhashable key encountered during map unpacking. |
| 179 | The serialized map cannot be deserialized into a Python dictionary. |
| 180 | """ |
| 181 | pass |
| 182 | |
| 183 | |
| 184 | class DuplicateKeyException(UnpackException): |