-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BE/#29] Feat : ApiResponse에 표준 에러 객체 반환 메서드 추가
- ApiResponse.UNAUTHORIZED() - 에러 메시지 상수화
- Loading branch information
Showing
2 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
BE/src/main/java/com/codesquad/issuetracker/ragdoll/commonconstant/ErrorMessages.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package com.codesquad.issuetracker.ragdoll.commonconstant; | ||
|
||
public class ErrorMessages { | ||
public static String USER_UNAUTHORIZED = "권한이 없습니다. 올바른 인증 후 다시 시도 해주세요."; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters