Skip to content

Commit

Permalink
Fix: httpstatus가 적합하지 않은 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
BYEONGRYEOL committed May 15, 2024
1 parent bf8344e commit d577d41
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions src/main/java/com/gt/genti/error/ErrorCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,14 @@ public enum ErrorCode {
TOKEN_CREATION_FAILED(HttpStatus.INTERNAL_SERVER_ERROR, ErrorUtils.TOKEN_CREATION_FAILED, "토큰 생성에 실패했습니다."),
TOKEN_REFRESH_FAILED(HttpStatus.INTERNAL_SERVER_ERROR, ErrorUtils.TOKEN_REFRESH_FAILED, "토큰 갱신에 실패했습니다."),
UnHandledException(HttpStatus.INTERNAL_SERVER_ERROR, ErrorUtils.UnHandledException, "예기치 못한 문제가 발생했습니다."),
ActivePictureGenerateRequestNotExists(HttpStatus.NO_CONTENT, ErrorUtils.ActivePictureGenerateRequestNotExists,
"현재 진행중인 요청이 없습니다."),
FileTypeNotProvided(HttpStatus.NO_CONTENT, ErrorUtils.FileTypeNotProvided, "파일 형식이 주어지지 않았습니다."),
PictureGenerateRequestNotFound(HttpStatus.NOT_FOUND, ErrorUtils.PictureGenerateRequestNotFound,
"사진 생성 요청을 찾지 못했습니다."),
ActivePictureGenerateRequestNotExists(HttpStatus.NOT_FOUND, ErrorUtils.ActivePictureGenerateRequestNotExists, "현재 진행중인 요청이 없습니다."),
FileTypeNotProvided(HttpStatus.BAD_REQUEST, ErrorUtils.FileTypeNotProvided, "파일 형식이 주어지지 않았습니다."),
PictureGenerateRequestNotFound(HttpStatus.NOT_FOUND, ErrorUtils.PictureGenerateRequestNotFound, "사진 생성 요청을 찾지 못했습니다."),
UserNotFound(HttpStatus.NOT_FOUND, ErrorUtils.UserNotFound, "사용자를 찾지 못했습니다."),
RequestAlreadyInProgress(HttpStatus.BAD_REQUEST, ErrorUtils.RequestAlreadyInProgress, "이미 작업이 진행중인 요청은 수정이 불가합니다."),
ZeroMatchingRequests(HttpStatus.NO_CONTENT, ErrorUtils.ZeroMatchingRequests, "매칭된 요청이 없습니다."),
UploadFileTypeNotAvailable(HttpStatus.NO_CONTENT, ErrorUtils.UploadFileTypeNotAvailable, "업로드 가능한 파일이 아닙니다."),
PictureGenerateResponseNotFound(HttpStatus.NOT_FOUND, ErrorUtils.PictureGenerateResponseNotFound,
"해당하는 사진생성요청 응답을 찾을 수 없습니다."),
UploadFileTypeNotAvailable(HttpStatus.NOT_ACCEPTABLE, ErrorUtils.UploadFileTypeNotAvailable, "업로드 가능한 파일이 아닙니다."),
PictureGenerateResponseNotFound(HttpStatus.NOT_FOUND, ErrorUtils.PictureGenerateResponseNotFound, "해당하는 사진생성요청 응답을 찾을 수 없습니다."),
ReportNotFound(HttpStatus.NOT_FOUND, ErrorUtils.ReportNotFound, "해당 report 건을 찾지 못했습니다."),
NotSupportedTemp(HttpStatus.BAD_REQUEST, ErrorUtils.NotSupportedTemp, "지원되지않는 조회조건입니다."),
CreatorNotFound(HttpStatus.NOT_FOUND, ErrorUtils.CreatorNotFound, "공급자를 찾을 수 없습니다."),
Expand Down

0 comments on commit d577d41

Please sign in to comment.