1
Files
lecture-professional-softwa…/src/main/java/mops/gruppen2/domain/exception/BadParameterException.java
tomvahl be37fcbd50 add Exceptions
Co-Authored-By: andibuls <andibuls@users.noreply.github.com>
Co-Authored-By: Lukas Ettel <lukasettel@users.noreply.github.com>
2020-03-25 14:40:59 +01:00

11 lines
283 B
Java

package mops.gruppen2.domain.exception;
import org.springframework.http.HttpStatus;
public class BadParameterException extends EventException {
public BadParameterException(String info) {
super(HttpStatus.INTERNAL_SERVER_ERROR, "Fehlerhafter Parameter angegeben!", info);
}
}