protected ResponseEntity runtimeException()

in src/main/java/com/epam/gmp/web/exception/RestExceptionHandler.java [61:66]


    protected ResponseEntity<Object> runtimeException(RuntimeException e, WebRequest request) {
        HttpHeaders headers = new HttpHeaders();
        headers.setContentType(MediaType.APPLICATION_JSON);
        ErrorResource error = new ErrorResource("Error", e.getMessage());
        return handleExceptionInternal(e, error, headers, HttpStatus.NOT_FOUND, request);
    }