Class CvException
The default exception to be thrown when error encounter in Open CV
public class CvException : Exception, ISerializable
- Inheritance
-
CvException
- Implements
- Inherited Members
Constructors
CvException(int, string, string, string, int)
The default exception to be thrown when error is encountered in Open CV
public CvException(int status, string funcName, string errMsg, string fileName, int line)
Parameters
status
intThe numeric code for error status
funcName
stringThe source file name where error is encountered
errMsg
stringA description of the error
fileName
stringThe source file name where error is encountered
line
intThe line number in the souce where error is encountered
Properties
ErrorMessage
A description of the error
public string ErrorMessage { get; set; }
Property Value
ErrorStr
The corresponding error string for the Status code
public string ErrorStr { get; }
Property Value
FileName
The source file name where error is encountered
public string FileName { get; set; }
Property Value
FunctionName
The name of the function the error is encountered
public string FunctionName { get; set; }
Property Value
Line
The line number in the souce where error is encountered
public int Line { get; set; }
Property Value
Status
The numeric code for error status
public int Status { get; set; }