Skip to content

Commit dd51932

Browse files
authored
chore: fix a typo
1 parent 7ae9ca5 commit dd51932

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)