@ExceptionHandler(IllegalArgumentException.class)
@ResponseStatus(value = HttpStatus.INTERNAL_SERVER_ERROR)
@ResponseBody
public ExceptionVO handleException5(IllegalArgumentException ex, HttpServletResponse response) throws IOException
{
ExceptionVO exceptionVO = new ExceptionVO("handleException5()", "HomeController", ex.getMessage());
return exceptionVO;
}