We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94f0aa6 commit c410354Copy full SHA for c410354
db_dtypes/json.py
@@ -80,7 +80,7 @@ def __init__(self, values) -> None:
80
elif isinstance(values, pa.ChunkedArray):
81
pa_data = values
82
else:
83
- raise ValueError(f"Unsupported type '{type(values)}' for JSONArray")
+ raise NotImplementedError(f"Unsupported type '{type(values)}' for JSONArray")
84
85
# Ensures compatibility with pandas version 1.5.3
86
if hasattr(self, '_data'):
0 commit comments