| DIR: /usr/local/lib/python3.6/site-packages/ptrace/debugger/ |
| Current File : //usr/local/lib/python3.6/site-packages/ptrace/debugger/process_error.py |
from ptrace.error import PtraceError
class ProcessError(PtraceError):
def __init__(self, process, message):
PtraceError.__init__(self, message, pid=process.pid)
self.process = process
|