klaasnicolaas/python-powerfox

View on GitHub
src/powerfox/exceptions.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Asynchronous Python client for Powerfox."""


class PowerfoxError(Exception):
    """Generic Powerfox exception."""


class PowerfoxConnectionError(PowerfoxError):
    """Powerfox connection exception."""


class PowerfoxAuthenticationError(PowerfoxError):
    """Powerfox authentication exception."""