(self, returncode: int, cmd: str, stderr: bytes)
| 6 | """Error in executing javascript.""" |
| 7 | |
| 8 | def __init__(self, returncode: int, cmd: str, stderr: bytes) -> None: |
| 9 | super().__init__(returncode, cmd=cmd, stderr=stderr) |
| 10 | |
| 11 | def __str__(self) -> str: |
| 12 | if isinstance(self.stderr, bytes): |
nothing calls this directly
no outgoing calls
no test coverage detected