OpenCVException Constructor
|
Constructor
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic OpenCVException(
ErrorCode status,
string funcName,
string errMsg,
string fileName,
int line
)
Public Sub New (
status As ErrorCode,
funcName As String,
errMsg As String,
fileName As String,
line As Integer
)
public:
OpenCVException(
ErrorCode status,
String^ funcName,
String^ errMsg,
String^ fileName,
int line
)
new :
status : ErrorCode *
funcName : string *
errMsg : string *
fileName : string *
line : int -> OpenCVException
OpenCvSharp.OpenCVException = function(status, funcName, errMsg, fileName, line);
Parameters
- status
- Type: OpenCvSharpErrorCode
The numeric code for error status - funcName
- Type: SystemString
The source file name where error is encountered - errMsg
- Type: SystemString
A description of the error - fileName
- Type: SystemString
The source file name where error is encountered - line
- Type: SystemInt32
The line number in the souce where error is encountered
See Also