Table of Contents

Class CvException

Namespace
Emgu.CV.Util
Assembly
Emgu.CV.dll

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 int

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

Properties

ErrorMessage

A description of the error

public string ErrorMessage { get; set; }

Property Value

string

ErrorStr

The corresponding error string for the Status code

public string ErrorStr { get; }

Property Value

string

FileName

The source file name where error is encountered

public string FileName { get; set; }

Property Value

string

FunctionName

The name of the function the error is encountered

public string FunctionName { get; set; }

Property Value

string

Line

The line number in the souce where error is encountered

public int Line { get; set; }

Property Value

int

Status

The numeric code for error status

public int Status { get; set; }

Property Value

int