cn.hyperchain.sdk.bvm.OperationResultCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of litesdk Show documentation
Show all versions of litesdk Show documentation
A Java client tool for Hyperchain
package cn.hyperchain.sdk.bvm;
public enum OperationResultCode {
SuccessCode(200),
MethodNotExistCode(-30001),
ParamsLenMisMatchCode(-30002),
InvalidParamsCode(-30003),
CallErrorCode(-30004);
public int getCode() {
return code;
}
private int code;
OperationResultCode(int code) {
this.code = code;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy