Codebase list python-faraday / 78dcaf8 faraday / settings / exceptions.py
78dcaf8

Tree @78dcaf8 (Download .tar.gz)

exceptions.py @78dcaf8raw · history · blame

1
2
3
4
5
6
7
8
class MissingConfigurationError(Exception):
    """Raised when setting configuration is missing"""
    pass


class InvalidConfigurationError(Exception):
    """Raised when setting configuration is invalid"""
    pass