1
Files
lecture-professional-softwa…/src/main/java/mops/gruppen2/domain/exception/GroupNotFoundException.java
Christoph 1c5139da8c Merge refactor into error-handling + fix merge errors
Co-authored-by: [Mahgs] <maxoerter@gmx.de>
Co-authored-by: Christoph <tobi@urpost.de>
2020-03-18 23:45:07 +01:00

11 lines
280 B
Java

package mops.gruppen2.domain.exception;
import org.springframework.http.HttpStatus;
public class GroupNotFoundException extends EventException {
public GroupNotFoundException(String info) {
super(HttpStatus.NOT_FOUND, "Gruppe wurde nicht gefunden.", info);
}
}