URL is improperly formed or cannot be parsed.
| 269 | |
| 270 | |
| 271 | class InvalidURL(Exception): |
| 272 | """ |
| 273 | URL is improperly formed or cannot be parsed. |
| 274 | """ |
| 275 | |
| 276 | def __init__(self, message: str) -> None: |
| 277 | super().__init__(message) |
| 278 | |
| 279 | |
| 280 | class CookieConflict(Exception): |
no outgoing calls
no test coverage detected