예제 #1
0
        public MethodMatchingException(MethodMatchingExceptionType type, MethodInfo originalSignature, MethodInfo inferredSignature, TypeInferenceContext ctx, Exception innerException)
            : this(type, originalSignature, inferredSignature, ctx, null, innerException)
        {

        }
예제 #2
0
 public MethodMatchingException(MethodMatchingExceptionType type, MethodInfo originalSignature, MethodInfo inferredSignature, TypeInferenceContext ctx, int? mismatchIndex, Exception innerException)
     : base(originalSignature, inferredSignature, ctx, mismatchIndex, innerException)
 {
     Type = type;
 }
예제 #3
0
        public MethodMatchingException(MethodMatchingExceptionType type, MethodInfo originalSignature, MethodInfo inferredSignature, TypeInferenceContext ctx, int? mismatchIndex)
            : this(type, originalSignature, inferredSignature, ctx, mismatchIndex, null)
        {

        }