yukihiko-shinoda/pytest-resource-path

View on GitHub
pytest_resource_path/exceptions.py

Summary

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

__all__ = ["Error", "LogicError"]


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


class LogicError(Error):
    """This Error indicates programing miss."""