XMRigManagerError Bases: XMRigAPIError Exception raised when a manager error occurs with the XMRig API. Source code in xmrig/exceptions.py 57 58 59 60 61 62class XMRigManagerError(XMRigAPIError): """ Exception raised when a manager error occurs with the XMRig API. """ def __init__(self, error = None, traceback = None, message = "An error occurred with the XMRig manager."): super().__init__(error, traceback, message)