mirror of
https://github.com/karma-riuk/crab-webapp.git
synced 2025-07-04 22:08:12 +02:00
6 lines
211 B
JavaScript
6 lines
211 B
JavaScript
export class InvalidJsonFormatError extends Error {
|
|
constructor(message = 'JSON must be an object mapping strings to strings') {
|
|
super(message);
|
|
this.name = 'InvalidJsonFormatError';
|
|
}
|
|
}
|