| 4 | """Base exception for sampling profiler errors.""" |
| 5 | |
| 6 | class SamplingUnknownProcessError(SamplingProfilerError): |
| 7 | def __init__(self, pid): |
| 8 | self.pid = pid |
| 9 | super().__init__(f"Process with PID '{pid}' does not exist.") |
| 10 | |
| 11 | class SamplingScriptNotFoundError(SamplingProfilerError): |
| 12 | def __init__(self, script_path): |
no outgoing calls
no test coverage detected
searching dependent graphs…