Skip to content

Commit b3156a9

Browse files
authored
Merge dd51932 into 7ae9ca5
2 parents 7ae9ca5 + dd51932 commit b3156a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/exceptions/ApiExceptionHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public Result<Object> exceptionHandler(ServiceException e, HandlerMethod hm) {
4444
@ExceptionHandler(Throwable.class)
4545
public Result<Object> exceptionHandler(Throwable e, HandlerMethod hm) {
4646
ApiException ce = hm.getMethodAnnotation(ApiException.class);
47-
log.error("Meet en unknown exception: ", e);
47+
log.error("Meet an unknown exception: ", e);
4848
if (ce == null) {
4949
return Result.errorWithArgs(Status.INTERNAL_SERVER_ERROR_ARGS, e.getMessage());
5050
}

0 commit comments

Comments
 (0)