(self, e: Exception, method: str, deep: str)
| 17 | |
| 18 | class ScriptSyntaxError(Exception): |
| 19 | def __init__(self, e: Exception, method: str, deep: str): |
| 20 | self.e = e |
| 21 | self.method = method |
| 22 | self.deep = deep |
| 23 | |
| 24 | def __str__(self): |
| 25 | info = "" |
nothing calls this directly
no outgoing calls
no test coverage detected