Skip to content

Commit

Permalink
refactor: UnAuthorizedException 네이밍 수정 #8
Browse files Browse the repository at this point in the history
  • Loading branch information
PgmJun committed Jan 19, 2024
1 parent f5dc6db commit c8be36b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

import com.nice.petudio.global.exception.error.ErrorCode;

public class UnauthorizedException extends CustomException {
public class UnAuthorizedException extends CustomException {

public UnauthorizedException(ErrorCode errorCode, String message) {
public UnAuthorizedException(ErrorCode errorCode, String message) {
super(errorCode, message);
}
}

0 comments on commit c8be36b

Please sign in to comment.