package com.hithomelabs.CFTunnels.Controllers; import org.springframework.boot.web.servlet.error.ErrorController; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class HomeController implements ErrorController { private static final String ERROR_PATH = "/error"; }