-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #324 from FISCO-BCOS/dev
sync code
- Loading branch information
Showing
9 changed files
with
190 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 14 additions & 14 deletions
28
src/main/java/org/fisco/bcos/channel/client/AmopException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
package org.fisco.bcos.channel.client; | ||
|
||
public class AmopException extends Exception { | ||
|
||
private String errmsg; | ||
|
||
public String getErrmsg() { | ||
return errmsg; | ||
} | ||
|
||
public void setErrmsg(String errmsg) { | ||
this.errmsg = errmsg; | ||
} | ||
private String errmsg; | ||
|
||
public AmopException(String string) { | ||
|
||
errmsg = string; | ||
} | ||
} | ||
public String getErrmsg() { | ||
return errmsg; | ||
} | ||
|
||
public void setErrmsg(String errmsg) { | ||
this.errmsg = errmsg; | ||
} | ||
|
||
public AmopException(String string) { | ||
|
||
errmsg = string; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.