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