Files
crab-webapp/src/utils/errors.js
2025-05-07 13:05:15 +02:00

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';
}
}