Class DynamicTesseractException
Inheritance
System.Object
DynamicTesseractException
Implements
System.Runtime.Serialization.ISerializable
Assembly: IronOcr.dll
Syntax
public class DynamicTesseractException : Exception
DynamicTesseractException signals a failure inside IronOCR's native Tesseract interop layer, such as an engine that could not initialize, trained data it could not load, or a low-level call that returned an error. Inspect its message and inner exception, and confirm the language data, engine mode, and input image before retrying. It derives from Exception, so a general handler also catches it. The debugging how-to helps trace the cause.
Constructors
DynamicTesseractException()
Declaration
public DynamicTesseractException()
DynamicTesseractException(SerializationInfo, StreamingContext)
Declaration
protected DynamicTesseractException(SerializationInfo info, StreamingContext context)
Parameters
| Type |
Name |
Description |
| System.Runtime.Serialization.SerializationInfo |
info |
|
| System.Runtime.Serialization.StreamingContext |
context |
|
DynamicTesseractException(String)
Declaration
public DynamicTesseractException(string message)
Parameters
| Type |
Name |
Description |
| System.String |
message |
|
DynamicTesseractException(String, Exception)
Declaration
public DynamicTesseractException(string message, Exception innerException)
Parameters
| Type |
Name |
Description |
| System.String |
message |
|
| System.Exception |
innerException |
|
Implements
System.Runtime.Serialization.ISerializable