1
Files
lecture-professional-softwa…/src/main/java/mops/gruppen2/domain/Exceptions/GroupIdMismatchException.java
Christoph b1460abe48 Exception rework: clearer message + origin
Co-authored-by: [Mahgs] <maxoerter@gmx.de>
Co-authored-by: Christoph <tobi@urpost.de>
2020-03-18 18:49:40 +01:00

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);
}
}