Skip to content

Commit

Permalink
feat: 예외 처리 타입 추가 (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
ywonchae1 committed Dec 1, 2024
1 parent 8f1f57c commit 73ae791
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ public enum CommonErrorType implements ErrorTypeCode {
// 인증 실패
UNAUTHORIZED("UNAUTHORIZED", "인증 실패"),
INVALID_TYPE("INVALID TYPE", "타입 검증 실패"),
INVALID_BODY("INVALID BODY", "요청 형식이 올바르지 않습니다.");
INVALID_BODY("INVALID BODY", "요청 형식이 올바르지 않습니다."),
NO_SUCH_ELEMENT("NO SUCH ELEMENT", "요소가 존재하지 않습니다"),
IO("I/O", "I/O 오류가 발생하였습니다."),
ILLEGAL_ARGUMENT("ILLEGAL ARGUMENT", "인자 값이 올바르지 않습니다.");

private final String message;
private final String description;
Expand Down

0 comments on commit 73ae791

Please sign in to comment.