File size: 239 Bytes
41906d6
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { HttpException, HttpStatus } from '@nestjs/common';

export class CommentNotFoundException extends HttpException {
  constructor(commentId: number) {
    super(`Comment with ID ${commentId} not found`, HttpStatus.NOT_FOUND);
  }
}