示例#1
0
文件: Exceptions.cs 项目: ExM/OncRpc
 internal static ReplyException RpcVersionError(reply_body replyBody, mismatch_info info)
 {
     return new ReplyException(replyBody,
         string.Format("unsupported RPC version number (supported versions of between {0} and {1})", info.low, info.high));
 }
示例#2
0
 internal static ReplyException ProgramMismatch(reply_body replyBody, mismatch_info info)
 {
     return(new ReplyException(replyBody,
                               string.Format("remote can't support program version (supported versions of between {0} and {1})", info.low, info.high)));
 }
示例#3
0
文件: Exceptions.cs 项目: ExM/OncRpc
 internal static ReplyException ProgramMismatch(reply_body replyBody, mismatch_info info)
 {
     return new ReplyException(replyBody,
         string.Format("remote can't support program version (supported versions of between {0} and {1})", info.low, info.high));
 }
示例#4
0
 internal static ReplyException RpcVersionError(reply_body replyBody, mismatch_info info)
 {
     return(new ReplyException(replyBody,
                               string.Format("unsupported RPC version number (supported versions of between {0} and {1})", info.low, info.high)));
 }