Skip to content

Commit

Permalink
[#5]✨Feat: ErrorDTO 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
sumin220 committed Nov 20, 2024
1 parent bce940f commit 1ed71d2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package univ.yesummit.global.exception.dto;

import lombok.Builder;

@Builder
public record ErrorResponseVO (
String name,
int errorCode,
String message
) {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package univ.yesummit.global.exception.dto;

public record ResponseVO<T> (
T data
) {}

0 comments on commit 1ed71d2

Please sign in to comment.