mirror of
https://github.com/PaulReichmuth/timekeep-backend.git
synced 2026-05-13 09:57:43 +00:00
12 lines
269 B
Java
12 lines
269 B
Java
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);
|
|
}
|
|
}
|