Skip to content

주말 Exception 메시지 변경 #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ dependencies {
implementation 'com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.4'

implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.28'



}

tasks.named('test') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@Getter
@RequiredArgsConstructor
public enum FoodExceptionEnum {
NOT_OPERATED("F0000", HttpStatus.METHOD_NOT_ALLOWED, "공휴일은 식당을 운영하지 않습니다.");
NOT_OPERATED("F0000", HttpStatus.METHOD_NOT_ALLOWED, "금일 학생식당은 운영하지 않습니다.");

public final String CODE;
public final HttpStatus httpStatus;
Expand Down