Skip to content

Commit

Permalink
Linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
real-mj-song committed Jan 25, 2025
1 parent bf47aac commit ec7cec1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ protected static RuntimeException wrapOperatorException(Operator operator, Runti
return e;
}

String errorMessage = "Caught exception while doing operator: " + operator.getClass() + " on segment: " + segment.getSegmentName();
String errorMessage = "Caught exception while doing operator: " + operator.getClass()
+ " on segment: " + segment.getSegmentName();
if (e instanceof IllegalArgumentException) {
throw new BadQueryRequestException(errorMessage, e);
}
Expand Down

0 comments on commit ec7cec1

Please sign in to comment.