Syntax error in a XPATH
Definition at line 41 of file exceptions.py.
◆ __init__()
searx.exceptions.SearxXPathSyntaxException.__init__ |
( |
| self, |
|
|
str | XPath | xpath_spec, |
|
|
str | message ) |
Definition at line 44 of file exceptions.py.
44 def __init__(self, xpath_spec: str | XPath, message: str):
45 super().__init__(str(xpath_spec) + " " + message)
46 self.message: str = message
47
48 self.xpath_str: str = str(xpath_spec)
49
50
◆ message
str searx.exceptions.SearxXPathSyntaxException.message = message |
◆ xpath_str
str searx.exceptions.SearxXPathSyntaxException.xpath_str = str(xpath_spec) |
The documentation for this class was generated from the following file: