many-repos/many_repos/errors.py
2024-05-28 15:35:47 +02:00

18 lines
361 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
class HTTPError(Exception):
"""Raised when API rejects our request"""
pass