9 lines
248 B
Java
9 lines
248 B
Java
package com.baeldung.annotations;
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
import org.springframework.web.bind.annotation.ResponseStatus;
|
|
|
|
@ResponseStatus(code = HttpStatus.BAD_REQUEST)
|
|
public class CustomException extends RuntimeException {
|
|
}
|