Table of Contents

Class ReaderException

Namespace
ZXing
Assembly
zxing.dll

The general exception class throw when something goes wrong during decoding of a barcode. This includes, but is not limited to, failing checksums / error correction algorithms, being unable to locate finder timing patterns, and so on.

public class ReaderException : Exception, ISerializable
Inheritance
ReaderException
Implements
Derived
Inherited Members

Constructors

ReaderException()

Initializes a new instance of the ReaderException class.

public ReaderException()

ReaderException(Exception)

Initializes a new instance of the ReaderException class.

public ReaderException(Exception innerException)

Parameters

innerException Exception

The inner exception.

ReaderException(string)

Initializes a new instance of the ReaderException class.

public ReaderException(string message)

Parameters

message string

ReaderException(string, Exception)

Initializes a new instance of the ReaderException class.

public ReaderException(string message, Exception innerException)

Parameters

message string
innerException Exception

The inner exception.