@@ -40,7 +40,7 @@ def convert_types(*types):
def _dec_hook(type: typing.Type, obj: typing.Any) -> typing.Any:
if type in types:
return type(obj)
- raise NotImplementedError
+ raise NotImplementedError(f"Decoding not implemented for type {type.__name__}")
return _dec_hook