Spring Boot/Spring Batch 목표 아키텍처 정의 (BAIS-SPRING-ARC-001)
Some checks failed
ci / test (push) Has been cancelled

This commit is contained in:
forge-bot 2026-07-10 13:30:14 +00:00
parent 4a409dff16
commit 75c7089960

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
}