Skip to content

Commit

Permalink
[config] Add exception handler controller
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Sep 26, 2023
1 parent 856a123 commit 4b05888
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/**
* Licensed under the GPL License. You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
* WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
* PURPOSE.
*/
package psiprobe.controllers.error;

import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;

@ControllerAdvice
public class ExceptionHandlerController {

@ExceptionHandler(Exception.class)
public String handleException(Exception e) {
return "/WEB-INF/jsp/errors/servleterror.jsp";
}

}

0 comments on commit 4b05888

Please sign in to comment.