11 lines
310 B
Java
11 lines
310 B
Java
package eu.ztsh.wymiana.exception;
|
|
|
|
import eu.ztsh.wymiana.web.model.UserCreateRequest;
|
|
|
|
public class UserAlreadyExistsException extends RuntimeException {
|
|
|
|
public UserAlreadyExistsException(UserCreateRequest entity) {
|
|
super("User with PESEL %s already exists".formatted(entity.pesel()));
|
|
}
|
|
|
|
}
|