1

merged with master and fixed some problems

This commit is contained in:
[Mahgs]
2020-03-24 16:31:55 +01:00
parent 6cd41d5e29
commit 2d3e935d64
4 changed files with 22 additions and 21 deletions

View File

@ -0,0 +1,9 @@
package mops.gruppen2.domain.exception;
import org.springframework.http.HttpStatus;
public class NoAccessException extends EventException {
public NoAccessException(String info) {
super(HttpStatus.FORBIDDEN, "Hier hast du leider keinen Zugriff!", info);
}
}