Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
file setting
Browse files Browse the repository at this point in the history
  • Loading branch information
ori0o0p committed Jan 22, 2024
1 parent 7f418a7 commit 649a425
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/com/example/daemawiki/global/error/ErrorCode.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
package com.example.daemawiki.global.error;

import lombok.AllArgsConstructor;
import lombok.Getter;

@Getter
@AllArgsConstructor
public enum ErrorCode {

TEST(400, "TEST");

private final int httpStatus;
private final String message;
}

0 comments on commit 649a425

Please sign in to comment.