2024-04-13 20:53:31 +01:00
|
|
|
package xyz.mcutils.backend.exception.impl;
|
2024-04-10 07:43:38 +01:00
|
|
|
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
|
import org.springframework.web.bind.annotation.ResponseStatus;
|
|
|
|
|
|
|
|
@ResponseStatus(HttpStatus.BAD_REQUEST)
|
|
|
|
public class BadRequestException extends RuntimeException {
|
|
|
|
|
|
|
|
public BadRequestException(String message) {
|
|
|
|
super(message);
|
|
|
|
}
|
|
|
|
}
|