road-master/showroom-podcast

View on GitHub
showroompodcast/exceptions.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
"""This module implements exceptions for this package."""


class Error(Exception):
    """
    Base class for exceptions in this module.
    @see https://docs.python.org/3/tutorial/errors.html#user-defined-exceptions
    """


class MaxRetriesExceededError(Error):
    """Max retries exceeded."""