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