Skip to content

Commit 82b3e2c

Browse files
committed
feat: 외부 API 호출에 대한 예외 처리 클래스 추가
1 parent 5dc474f commit 82b3e2c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.example.log4u.common.external.exception;
2+
3+
import lombok.Getter;
4+
import lombok.RequiredArgsConstructor;
5+
6+
@Getter
7+
@RequiredArgsConstructor
8+
public class ExternalApiRequestException extends RuntimeException{
9+
10+
private final String statusCode;
11+
private final String message;
12+
13+
}

0 commit comments

Comments
 (0)