You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eventmesh.apache.org by mi...@apache.org on 2022/10/20 02:50:50 UTC

[incubator-eventmesh] branch master updated: Issue [apache#1516] - Removing throws exception

This is an automated email from the ASF dual-hosted git repository.

mikexue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-eventmesh.git


The following commit(s) were added to refs/heads/master by this push:
     new d8421555 Issue [apache#1516] - Removing throws exception
     new bb8f119d Merge pull request #1661 from jayabha-jayas/master
d8421555 is described below

commit d8421555393ae232251195176adff4acb52f493e
Author: jayabharathi-jb <ja...@thoughtworks.com>
AuthorDate: Wed Oct 19 16:17:54 2022 +0530

    Issue [apache#1516] - Removing throws exception
---
 .../eventmesh/common/protocol/http/body/client/UnRegResponseBody.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/http/body/client/UnRegResponseBody.java b/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/http/body/client/UnRegResponseBody.java
index 975cb35a..c43502f0 100644
--- a/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/http/body/client/UnRegResponseBody.java
+++ b/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/http/body/client/UnRegResponseBody.java
@@ -55,7 +55,7 @@ public class UnRegResponseBody extends Body {
         this.resTime = resTime;
     }
 
-    public static UnRegResponseBody buildBody(Integer retCode, String retMsg) throws Exception {
+    public static UnRegResponseBody buildBody(Integer retCode, String retMsg) {
         UnRegResponseBody regResponseBody = new UnRegResponseBody();
         regResponseBody.setRetMsg(retMsg);
         regResponseBody.setResTime(System.currentTimeMillis());


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@eventmesh.apache.org
For additional commands, e-mail: commits-help@eventmesh.apache.org