import { InternalServerError } from '@squiz/dx-common-lib'; export class InvalidDataFormatError extends InternalServerError { name = 'InvalidDataFormatError'; constructor(message: string) { super(message); } }