728x90
1. exceptionHandler.ts를 만든다.
// exceptionHandler.ts
import { HttpException } from "@nestjs/common";
import { HttpStatus } from "@nestjs/common";
export class InternalServerErrorException extends HttpException {
constructor() {
super("일시적인 오류가 발생했습니다.", HttpStatus.INTERNAL_SERVER_ERROR);
}
}
2. catch 된 에러가 있다면 throw를 발생시킨다.
catch (error) {
throw new InternalServerErrorException();
}
결과
'아카이브 > 미륵관심법' 카테고리의 다른 글
비동기 함수에서 return 만 하는 controller의 await 처리 실험 (0) | 2023.10.14 |
---|---|
feat : 알림 GET POST DELETE (0) | 2023.09.28 |
PCM 펄스 부호 변조 (2) | 2023.09.26 |
FCM Firebase 클라우드 메시징 (0) | 2023.09.26 |
PWA 프로그레시브 웹 앱 (0) | 2023.09.26 |