Skip to content

Commit

Permalink
fix: 에러 수정 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
mirageoasis authored Aug 14, 2024
2 parents fddbbbc + 2507f65 commit 5003b20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public ItemResult<SeatGradeElement> getSeatGrades(Long performanceId) {
Performance performance =
performanceRepository
.findById(performanceId)
.orElseThrow(() -> new TicketingException(("")));
.orElseThrow(() -> new TicketingException(ErrorCode.NOT_FOUND_ZONE));
List<SeatGradeElement> seatGrades =
seatGradeRepository.findAllByPerformance(performance).stream()
.map(SeatGradeElement::of)
Expand Down

0 comments on commit 5003b20

Please sign in to comment.