MCPcopy
hub / github.com/encode/httpx / CookieConflict

Class CookieConflict

httpx/_exceptions.py:280–288  ·  view source on GitHub ↗

Attempted to lookup a cookie by name, but multiple cookies existed. Can occur when calling `response.cookies.get(...)`.

Source from the content-addressed store, hash-verified

278
279
280class CookieConflict(Exception):
281 """
282 Attempted to lookup a cookie by name, but multiple cookies existed.
283
284 Can occur when calling `response.cookies.get(...)`.
285 """
286
287 def __init__(self, message: str) -> None:
288 super().__init__(message)
289
290
291# Stream exceptions...

Callers 1

getMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected