Co-Authored-By: andibuls <andibuls@users.noreply.github.com> Co-Authored-By: Lukas Ettel <lukasettel@users.noreply.github.com>
11 lines
283 B
Java
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);
|
|
}
|
|
}
|