RPCErrorCode constructor

RPCErrorCode(
  1. int? code
)

Implementation

RPCErrorCode(int? code) {
  this.CodeNumber = code;
  this.CodeString = this.Mapping[code];
}