Files
crab-webapp/src/utils/errors.py
2025-05-13 13:27:38 +02:00

5 lines
205 B
Python

class InvalidJsonFormatError(Exception):
def __init__(self, message='JSON must be an object mapping strings to strings'):
super().__init__(message)
self.name = 'InvalidJsonFormatError'