All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.hyperchain.sdk.bvm.OperationResultCode Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
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