Skip to content
Snippets Groups Projects

Added new default error page

Merged Seb Barnard requested to merge issueThirtySeven into develop
3 files
+ 37
0
Compare changes
  • Side-by-side
  • Inline
Files
3
package com.example.clientproject.web.controllers;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class Throw500 {
@GetMapping("/return500")
public String throw500(){
return "index.html";
}
}
Loading