예제 #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)));
 }