| 9 | super().__init__(f"Process with PID '{pid}' does not exist.") |
| 10 | |
| 11 | class SamplingScriptNotFoundError(SamplingProfilerError): |
| 12 | def __init__(self, script_path): |
| 13 | self.script_path = script_path |
| 14 | super().__init__(f"Script '{script_path}' not found.") |
| 15 | |
| 16 | class SamplingModuleNotFoundError(SamplingProfilerError): |
| 17 | def __init__(self, module_name): |
no outgoing calls
no test coverage detected
searching dependent graphs…