Skip to content

Commit

Permalink
[#5]✨Feat: MemberException작성
Browse files Browse the repository at this point in the history
  • Loading branch information
sumin220 committed Nov 20, 2024
1 parent 1ed71d2 commit e324462
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package univ.yesummit.domain.member.exception;

import lombok.Getter;
import lombok.RequiredArgsConstructor;
import univ.yesummit.global.exception.ErrorCode;

@Getter
@RequiredArgsConstructor
public class MemberException extends RuntimeException {

private final ErrorCode errorCode;
}

0 comments on commit e324462

Please sign in to comment.