| 59 | |
| 60 | |
| 61 | class PythonExecutorError(AuraException): |
| 62 | def __init__(self, *args, **kwargs): |
| 63 | super().__init__(*args, **kwargs) |
| 64 | self.stdout = None |
| 65 | self.stderr = None |
| 66 | |
| 67 | |
| 68 | class ASTParseError(AuraException): |
no outgoing calls
no test coverage detected