package roomescape.member.exception import org.springframework.http.HttpStatus import roomescape.common.exception.ErrorCode enum class MemberErrorCode( override val httpStatus: HttpStatus, override val errorCode: String, override val message: String ) : ErrorCode { MEMBER_NOT_FOUND(HttpStatus.NOT_FOUND, "M001", "회원을 찾을 수 없어요.") }