Attempted to lookup a cookie by name, but multiple cookies existed. Can occur when calling `response.cookies.get(...)`.
| 278 | |
| 279 | |
| 280 | class 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... |