diff --git a/BackEnd/src/main/java/springwebsocket/webchat/global/exception/ExceptionResponse.java b/BackEnd/src/main/java/springwebsocket/webchat/global/exception/ExceptionResponse.java deleted file mode 100644 index 80981df..0000000 --- a/BackEnd/src/main/java/springwebsocket/webchat/global/exception/ExceptionResponse.java +++ /dev/null @@ -1,16 +0,0 @@ -package springwebsocket.webchat.global.exception; - -import org.springframework.http.HttpStatus; -import springwebsocket.webchat.error.ErrorCode; - -public class ExceptionResponse { - private final String message; - - public ExceptionResponse(ErrorCode exceptionCode) { - this.message = exceptionCode.getMessage(); - } - - public String getMessage() { - return message; - } -} \ No newline at end of file