(self)
| 98 | super().__init__(*args, **kwargs) |
| 99 | |
| 100 | def __str__(self) -> str: |
| 101 | message, *_ = self.args |
| 102 | return f"Engine error: {message}" |
| 103 | |
| 104 | |
| 105 | class ProcessNotFound(PystackError, ProcessLookupError): |
nothing calls this directly
no outgoing calls
no test coverage detected