6 lines
170 B
Python
6 lines
170 B
Python
"""Miscellaneous Exceptions and Errors."""
|
|
|
|
class MissingConfigKeyError(RuntimeError):
|
|
"""Raised when an expected appconfig key-value pair is not found."""
|
|
|
|
pass
|