| 80 | |
| 81 | |
| 82 | class ValidationError(Exception): |
| 83 | def __init__(self, message, attribute=None): |
| 84 | super().__init__(message) |
| 85 | self.attribute = attribute |
| 86 | |
| 87 | |
| 88 | log_entry_type = namedtuple("log_entry_type", ("level", "message", "instance", "attribute")) |
no outgoing calls
no test coverage detected