This commit is contained in:
2026-08-12 23:35:54 +07:00
parent 9e3696395c
commit 30453e015d
4 changed files with 124 additions and 0 deletions
@@ -0,0 +1,8 @@
package aplp.backend.core.common.exception;
public class ResourceNotFoundException extends RuntimeException {
public ResourceNotFoundException(String message) {
super(message);
}
}
@@ -0,0 +1,10 @@
package aplp.backend.core.common.response;
import java.time.LocalDateTime;
public record ErrorResponse(
int status,
String message,
LocalDateTime timestamp
) {
}