Accord.Math.Optimization.BaseOptimizationMethod.ArgumentException C# (CSharp) 메소드

ArgumentException() 보호된 정적인 메소드

Creates an exception with a given inner optimization algorithm code (for debugging purposes).
protected static ArgumentException ( string paramName, string message, string code ) : ArgumentOutOfRangeException
paramName string
message string
code string
리턴 System.ArgumentOutOfRangeException
        protected static ArgumentOutOfRangeException ArgumentException(string paramName, string message, string code)
        {
            var e = new ArgumentOutOfRangeException(paramName, message);
            e.Data["Code"] = code;
            return e;
        }