13 lines
329 B
Java
13 lines
329 B
Java
|
package cc.fascinated.exception.impl;
|
||
|
|
||
|
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);
|
||
|
}
|
||
|
}
|