Lines Matching refs:JSONDecodeError
20 class JSONDecodeError(ValueError): class
67 raise JSONDecodeError(msg, s, pos)
85 raise JSONDecodeError("Unterminated string starting at", s, begin)
99 raise JSONDecodeError(msg, s, end)
106 raise JSONDecodeError("Unterminated string starting at",
114 raise JSONDecodeError(msg, s, end)
163 raise JSONDecodeError(
174 raise JSONDecodeError("Expecting ':' delimiter", s, end)
188 raise JSONDecodeError("Expecting value", s, err.value) from None
202 raise JSONDecodeError("Expecting ',' delimiter", s, end - 1)
207 raise JSONDecodeError(
232 raise JSONDecodeError("Expecting value", s, err.value) from None
242 raise JSONDecodeError("Expecting ',' delimiter", s, end - 1)
340 raise JSONDecodeError("Extra data", s, end)
355 raise JSONDecodeError("Expecting value", s, err.value) from None