many-repos/many_repos/errors.py
2024-05-27 08:55:13 +02:00

13 lines
276 B
Python

class ConfigNotFound(Exception):
"""Raised when non-existing config was tried to be used"""
pass
class InvalidConfig(Exception):
"""Raised when config is invalid"""
pass
class InvalidSource(Exception):
"""Raised when invalid source is used"""
pass