6 lines
251 B
Python
6 lines
251 B
Python
class ValidationException(ValueError):
|
|
"""Any user-caused configuration error should result in this error"""
|
|
|
|
|
|
class StringFormattingException(ValidationException):
|
|
"""Tried to format a string but failed due to user misconfigured variables"""
|