package incheon.com.cmm.exception;

import java.time.LocalDateTime;

import lombok.Builder;
import lombok.Getter;

/**
 * @Class Name : ErrorResponse.java
 * @Description : 오류 응답을 위한 DTO 클래스
 * @Modification Information
 *
 *    수정일       수정자         수정내용
 *    -------     -------     -------------------
 *
 */
@Getter
@Builder
public class ErrorResponse {
    
    private final int status;          // HTTP 상태 코드
    private final String message;      // 오류 메시지
    private final String error;        // 오류 유형
    
  //@Builder.Default
    private final LocalDateTime timestamp = LocalDateTime.now(); // 발생 시간
} 