Skip to content

Commit

Permalink
Working student differences
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed Jul 18, 2024
1 parent 8d77745 commit 6e543fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

import java.time.LocalDateTime;
import java.util.*;
import java.util.concurrent.ExecutionException;
import java.util.stream.Collectors;

import static org.springframework.http.HttpStatus.BAD_REQUEST;
Expand Down Expand Up @@ -100,7 +99,8 @@ public List<StudentDifference> getStudentDifferences(Integer pageNumber, Integer
stud -> stud
));
return getDifferencesList(currentStudentsMap, historyRecordsMap);
} catch (Exception e) {
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new StudentDataCollectionAPIRuntimeException("Error occurred making pagination call: " + e.getMessage());
}
}
Expand Down

0 comments on commit 6e543fc

Please sign in to comment.