Spring Boot/Spring Batch 목표 아키텍처 정의 #4

Open
forge-bot wants to merge 8 commits from forge/BAIS-SPRING-ARC-001-attempt-1 into main
Showing only changes of commit 75c7089960 - Show all commits

View file

@ -0,0 +1,13 @@
package com.example.demo.error;
public class ErrorResponse {
private String message;
private int status;
public ErrorResponse(String message, int status) {
this.message = message;
this.status = status;
}
// Getters
}