package de.pnreichmuth.timekeep_backend.exceptions; import lombok.extern.slf4j.Slf4j; @Slf4j public class StationNotFoundException extends NotFoundException { public StationNotFoundException(String message) { super(message); log.error(message); } }