Skip to content

Commit

Permalink
feat: change ErrorDTO location (#9)
Browse files Browse the repository at this point in the history
dto에 error 폴더를 생성 뒤, request/response로 분리하여 관리하는 방법으로 변경
  • Loading branch information
chea-young committed Dec 13, 2023
1 parent 1f95eaa commit e716595
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.compono.ibackend.common.dto;
package com.compono.ibackend.common.dto.error.response;

import com.compono.ibackend.common.enumType.ErrorCode;
import com.compono.ibackend.common.exception.CustomException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.compono.ibackend.common.handler;

import com.compono.ibackend.common.dto.ErrorDTO;
import com.compono.ibackend.common.dto.error.response.ErrorDTO;
import com.compono.ibackend.common.exception.CustomException;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.ControllerAdvice;
Expand Down

0 comments on commit e716595

Please sign in to comment.