14 lines
305 B
Java
14 lines
305 B
Java
package com.baeldung.jsonexception;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
@Controller
|
|
public class MainController {
|
|
|
|
@GetMapping("/")
|
|
public void index() throws CustomException {
|
|
throw new CustomException();
|
|
}
|
|
|
|
} |