11 lines
295 B
Java
11 lines
295 B
Java
package mops.gruppen2.domain.Exceptions;
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
|
public class GroupIdMismatchException extends EventException {
|
|
|
|
public GroupIdMismatchException(String info) {
|
|
super(HttpStatus.INTERNAL_SERVER_ERROR, "Falsche Gruppe für Event.", info);
|
|
}
|
|
}
|