Skip to content

Commit

Permalink
#33 [Update] 에러 코드 변경
Browse files Browse the repository at this point in the history
NULL_POINTER_EXCEPTION 메세지 변경
  • Loading branch information
Anna-Jin committed Jul 20, 2022
1 parent fcd2239 commit 9238d0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/mpnp/baechelin/exception/ErrorCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public enum ErrorCode {
API_LOAD_FAILURE(500, "E-ALF500", "API 로딩에 실패하였습니다."),
API_NO_RESULT(500, "E-ALF500", "API 결과가 존재하지 않습니다."),

NULL_POINTER_EXCEPTION(500, "E-NPE500", "NULL값이 들어올 수 없습니다.");
NULL_POINTER_EXCEPTION(500, "E-NPE500", "빈 값이 들어올 수 없습니다.");

private final int status;
private final String code;
Expand Down

0 comments on commit 9238d0c

Please sign in to comment.