klaasnicolaas/python-arnhem

View on GitHub
src/arnhem/exceptions.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Asynchronous Python client providing Open Data information of Arnhem."""


class ODPArnhemError(Exception):
    """Generic Open Data Platform Arnhem exception."""


class ODPArnhemConnectionError(ODPArnhemError):
    """Open Data Platform Arnhem - connection exception."""


class ODPArnhemNoResultsError(ODPArnhemError):
    """Open Data Platform Arnhem - no results found exception."""