Skip to content

Commit

Permalink
Merge pull request #115 from marinesnow34/takeout
Browse files Browse the repository at this point in the history
Fix: 에러 번호 수정2
  • Loading branch information
marinesnow34 authored Dec 1, 2023
2 parents eb884cc + 90859c3 commit 35fda84
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ public enum ExceptionCode {
COUPON_CODE_NOT_MATCH(400, "Coupon code is not match."),
COUPON_ISSUE_COUNT_EXCEED(400, "Coupon issue count exceed."),
ORDER_NOT_RECEIPT(400, "Order is not receipt."),
INVALID_INOUT(409, "Invalid inout."),
INVALID_INOUT(400, "Invalid inout."),
CART_NOT_EDITABLE(400, "Cart is not editable."),
COUPON_NOT_VALID(400, "Coupon is not valid."),
NOT_MY_CART(400, "Not my cart."),
STORE_NOT_OPEN(401, "Store is not open."),
CART_SOLD_OUT(400, "Cart is sold out."),
CART_INOUT_NOT_MATCH(400, "Cart inout is not match.");
CART_INOUT_NOT_MATCH(409, "Cart inout is not match.");

private int status;
private String message;
Expand Down

0 comments on commit 35fda84

Please sign in to comment.