public ResponseEntity handleException()

in src/main/java/com/epam/digital/data/platform/form/provider/exception/ApplicationExceptionHandler.java [42:46]


  public ResponseEntity<DetailedErrorResponse> handleException(Exception exception) {
    log.error("Runtime error occurred", exception);
    return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR)
        .body(newDetailedResponse(RUNTIME_ERROR, exception));
  }