Skip to content

Commit

Permalink
feat: Add Response message (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahyun0326 committed Mar 21, 2024
1 parent 441731e commit efade62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/beotkkot/qtudy/common/ResponseCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ public interface ResponseCode {
String NOT_EXISTED_USER = "NEU";
String NOT_EXISTED_POST = "NEP";
String NOT_EXISTED_COMMENT = "NEC";
String INVALID_FORMAT = "IF";

// HTTP Status 401
String SIGN_IN_FAIL = "SF";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ public interface ResponseMessage {
String NOT_EXISTED_USER = "This user does not exist.";
String NOT_EXISTED_POST = "This post does not exist.";
String NOT_EXISTED_COMMENT = "This comment does not exist.";
String INVALID_FORMAT = "Invalid Format";

// HTTP Status 401
String SIGN_IN_FAIL = "Login information mismatch.";
Expand Down

0 comments on commit efade62

Please sign in to comment.