Model.RpcException.RpcException C# (CSharp) Method

RpcException() public method

public RpcException ( int error, string message ) : System
error int
message string
return System
		public RpcException(int error, string message) : base($"Error: {error} Message: {message}")
		{
			this.Error = error;
		}

Same methods

RpcException::RpcException ( int error, string message, Exception e ) : System
RpcException