made exception interfaces

This commit is contained in:
2026-02-04 19:50:24 +01:00
parent 0a65a47749
commit b9d4943ba4
8 changed files with 20 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ package de.pnreichmuth.timekeep_backend.exceptions;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class StationNotFoundException extends RuntimeException {
public class StationNotFoundException extends NotFoundException {
public StationNotFoundException(String message) {
super(message);
log.error(message);