Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
패키지 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ori0o0p committed Jan 31, 2024
1 parent edc2fcf commit bdd3d56
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ public enum ErrorCode {

PASSWORD_MISMATCH(401, "비밀번호가 일치하지 않습니다."),

ALREADY_EXISTS_EMAIL(409, "이 이메일을 사용 중인 유저가 존재합니다."),

UNVERIFIED_EMAIL(403, "이메일 인증을 하지 않은 사용자입니다."),

USER_NOT_FOUND(404, "해당 이메일로 가입된 유저를 찾지 못했습니다."),

ALREADY_EXISTS_EMAIL(409, "이 이메일을 사용 중인 유저가 존재합니다."),

MAIL_CONFIRM_FAILED(500, "메일 전송 실패 (서버 오류)"),


Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.daemawiki.global.exception;
package com.example.daemawiki.global.exception.H400;

import com.example.daemawiki.global.error.ErrorCode;
import com.example.daemawiki.global.error.exception.CustomException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.daemawiki.global.exception;
package com.example.daemawiki.global.exception.H401;

import com.example.daemawiki.global.error.ErrorCode;
import com.example.daemawiki.global.error.exception.CustomException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.daemawiki.global.exception;
package com.example.daemawiki.global.exception.H403;

import com.example.daemawiki.global.error.ErrorCode;
import com.example.daemawiki.global.error.exception.CustomException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.daemawiki.global.exception;
package com.example.daemawiki.global.exception.H404;

import com.example.daemawiki.global.error.ErrorCode;
import com.example.daemawiki.global.error.exception.CustomException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.daemawiki.global.exception;
package com.example.daemawiki.global.exception.H409;

import com.example.daemawiki.global.error.ErrorCode;
import com.example.daemawiki.global.error.exception.CustomException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.daemawiki.global.exception;
package com.example.daemawiki.global.exception.H500;

import com.example.daemawiki.global.error.ErrorCode;
import com.example.daemawiki.global.error.exception.CustomException;
Expand Down

0 comments on commit bdd3d56

Please sign in to comment.