OpenCvSharp.OpenCVException.OpenCVException C# (CSharp) Method

OpenCVException() public method

Constructor
public OpenCVException ( ErrorCode status, string funcName, string errMsg, string fileName, int line ) : System
status ErrorCode The numeric code for error status
funcName string The source file name where error is encountered
errMsg string A description of the error
fileName string The source file name where error is encountered
line int The line number in the souce where error is encountered
return System
        public OpenCVException(ErrorCode status, string funcName, string errMsg, string fileName, int line)
            : base(errMsg)
        {
            Status = status;
            FuncName = funcName;
            ErrMsg = errMsg;
            FileName = fileName;
            Line = line;
        }
    }
OpenCVException