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

Class InvalidURL

httpx/_exceptions.py:271–277  ·  view source on GitHub ↗

URL is improperly formed or cannot be parsed.

Source from the content-addressed store, hash-verified

269
270
271class 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
280class CookieConflict(Exception):

Callers 4

urlparseFunction · 0.85
encode_hostFunction · 0.85
normalize_portFunction · 0.85
validate_pathFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected