penisularhr / src / exceptions / file-not-image.exception.ts
file-not-image.exception.ts
Raw
import { BadRequestException } from '@nestjs/common';

export class FileNotImageException extends BadRequestException {
  constructor(error?: string) {
    super('error.fileNotImage', error);
  }
}