MCPcopy Index your code
hub / github.com/microsoft/playwright-python / Error

Class Error

playwright/_impl/_errors.py:26–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24
25
26class Error(Exception):
27 def __init__(self, message: str) -> None:
28 self._message = message
29 self._name: Optional[str] = None
30 self._stack: Optional[str] = None
31 self._details: Optional[Any] = None
32 self._log: Optional[List[str]] = None
33 super().__init__(message)
34
35 @property
36 def message(self) -> str:
37 return self._message
38
39 @property
40 def name(self) -> Optional[str]:
41 return self._name
42
43 @property
44 def stack(self) -> Optional[str]:
45 return self._stack
46
47
48class TimeoutError(Error):

Callers 15

__enter__Method · 0.90
_syncMethod · 0.90
to_implMethod · 0.90
registerMethod · 0.90
startMethod · 0.90
connectMethod · 0.90
sizesMethod · 0.90
post_data_jsonMethod · 0.90
frameMethod · 0.90
_check_not_handledMethod · 0.90
_inner_fulfillMethod · 0.90
connect_to_serverMethod · 0.90

Calls

no outgoing calls

Tested by 1