반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 플러터 개발
- 자료구조공부
- 스프링부트
- 알고리즘공부
- Kafka
- JPA예제
- nestjs
- 코테준비
- JPA 공부
- nestjs공부
- 스프링 공부
- Axon framework
- DDD
- Flutter
- JPA
- JPA공부
- 기술면접공부
- 스프링공부
- 스프링
- 카프카
- querydsl
- 자바공부
- K8S
- 프로그래머스
- nestjs스터디
- 기술공부
- JPA스터디
- 플러터 공부
- 스프링부트공부
- 코테공부
Archives
- Today
- Total
DevBoi
[NestJs] 예외 처리 본문
반응형
그냥 뭐.. 정의 된 예외를 던져주면된다.
스프링이랑 이건 뭐 거의 동일하다.
getBoardById(id: string) : Board{
const board = this.boards.find((board) => board.id == id);
if(!board)
throw new NotFoundException();
return board
}
throw new NotFoundException("Not Found Exception");
이렇게 하면 Exception message까지 가능하다.
이렇게 확인까지 가능하다.
생각보다 간편하다.
ExceptionHandler 기능을 하는것도 있을것같은데...무튼 그렇다.
ExceptionHandler라기 보다는, 글로벌하기 파이프를 연결 하면.. 가능할 것같다
사실 스프링 aop,exceptionhandler 뭐 다 비슷비슷하니까
반응형
'Develop > [NestJs]' 카테고리의 다른 글
[NestJS] MariaDB , TypeOrm 세팅 (0) | 2023.05.29 |
---|---|
[NestJS] 커스텀 파이프 개발 (0) | 2023.05.27 |
[NestJs] Pipes란? (0) | 2023.05.27 |
[NestJS] 게시물 CRUD (0) | 2023.05.27 |
[NestJS] DTO 사용 (1) | 2023.05.27 |