klaasnicolaas/python-solcast-pv

View on GitHub
src/solcast_pv/exceptions.py

Summary

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


class SolcastError(Exception):
    """Generic Solcast exception."""


class SolcastConnectionError(SolcastError):
    """Solcast connection exception."""


class SolcastAuthenticationError(SolcastError):
    """Solcast authentication exception."""


class SolcastResultsError(SolcastError):
    """Solcast results exception."""