Skip to content

XMRigPropertiesError

Bases: XMRigAPIError

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

Source code in xmrig/exceptions.py
class XMRigPropertiesError(XMRigAPIError):
    """
    Exception raised when a properties error occurs with the XMRig API.
    """
    def __init__(self, error: str = None, traceback: str = None, message: str = "An error occurred retrieving properties from the XMRig API cache. Please check the API response.") -> None:
        super().__init__(error, traceback, message)