klaasnicolaas/python-nednl

View on GitHub
src/nednl/exceptions.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Asynchronous Python client for National Energy Dashboard NL."""


class NedNLError(Exception):
    """Generic NED NL exception."""


class NedNLConnectionError(NedNLError):
    """NED NL connection exception."""


class NedNLAuthenticationError(NedNLError):
    """NED NL authentication exception."""