Skip to content

XMRigManagerError

Bases: XMRigAPIError

Exception raised when a manager error occurs with the XMRig API.

Source code in xmrig/exceptions.py
class XMRigManagerError(XMRigAPIError):
    """
    Exception raised when a manager error occurs with the XMRig API.
    """
    def __init__(self, error: str = None, traceback: str = None, message: str = "An error occurred with the XMRig manager.") -> None:
        super().__init__(error, traceback, message)