Files
gh-giuseppe-trisciuoglio-de…/skills/spring-boot/spring-boot-crud-patterns/templates/ErrorResponse.java.tpl
2025-11-29 18:28:30 +08:00

9 lines
141 B
Smarty

package $package.presentation.dto;
public record ErrorResponse(
int status,
String error,
String message,
String path
) { }