The default exception to be thrown when error is encountered in Open CV

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1062 (2.2.1.1062)

Syntax

         
 C#  Visual Basic  Visual C++ 
public CvException(
	int status,
	string funcName,
	string errMsg,
	string fileName,
	int line
)
Public Sub New ( _
	status As Integer, _
	funcName As String, _
	errMsg As String, _
	fileName As String, _
	line As Integer _
)
public:
CvException(
	int status, 
	String^ funcName, 
	String^ errMsg, 
	String^ fileName, 
	int line
)

Parameters

status
Int32
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
Int32
The line number in the souce where error is encountered

See Also