Skip to content

Commit

Permalink
Missed exception cause (#724)
Browse files Browse the repository at this point in the history
close #727
  • Loading branch information
shoothzj authored Jan 19, 2022
1 parent 98f1588 commit c36aff2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public Package rr(CloudEvent event, long timeout) throws EventMeshException {
log.info("{}|rr|send|type={}|msg={}", clientNo, msg, msg);
return io(msg, timeout);
} catch (Exception ex) {
throw new EventMeshException("rr error");
throw new EventMeshException("rr error", ex);
}
}

Expand Down

0 comments on commit c36aff2

Please sign in to comment.