feat: Implement feature to list all employees from a project (SCRUM-46) #36

Merged
ptran merged 4 commits from feature/get-employees-from-project into main 2024-10-23 10:19:33 +00:00
Showing only changes of commit c10c50190b - Show all commits

@ -30,7 +30,7 @@ public class GlobalExceptionHandler {
@ExceptionHandler(Exception.class)
public ResponseEntity<ErrorDetails> handleAllOtherExceptions(Exception ex, WebRequest request) {
ErrorDetails errorDetails = new ErrorDetails(new Date(), ex.getClass() + " " + ex.getMessage(), request.getDescription(false));
System.out.println(ex);
return new ResponseEntity<>(errorDetails, HttpStatus.INTERNAL_SERVER_ERROR);
}