pivoshenko/poetry-plugin-dotenv

View on GitHub
src/poetry_plugin_dotenv/exceptions.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Module defines custom exceptions that are used across plugin."""

from __future__ import annotations


class PoetryPluginDotenvError(Exception):
    """Base exception."""


class PoetryPluginDotenvPatternError(PoetryPluginDotenvError):
    """Exception raised when a dotenv pattern is not valid or not found."""