mirror of
https://github.com/karma-riuk/crab-webapp.git
synced 2025-07-06 14:28:13 +02:00
5 lines
205 B
Python
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'
|