12 lines
272 B
Java
12 lines
272 B
Java
package mops.gruppen2.domain.exception;
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
|
public class GroupFullException extends EventException {
|
|
|
|
public GroupFullException(String info) {
|
|
super(HttpStatus.INTERNAL_SERVER_ERROR, "Der User existiert bereits.", info);
|
|
}
|
|
}
|
|
|