 | CantCreateRendererException Constructor (String) |
Initializes a new instance of the CantCreateRendererException class with a specified error message.
Namespace: Patagames.Ocr.ExceptionsAssembly: Patagames.Ocr (in Patagames.Ocr.dll) Version: 1.7.0.341
Syntaxpublic CantCreateRendererException(
string message
)
Public Sub New (
message As String
)
public:
CantCreateRendererException(
String^ message
)
new :
message : string -> CantCreateRendererException
public CantCreateRendererException(
String message
)
Patagames.Ocr.Exceptions.CantCreateRendererException = function(message);
Parameters
- message
- Type: SystemString
The message that describes the error.
Remarks
This constructor initializes the Message property of the new instance by using the message parameter. If the message parameter is null, this is the same as calling the Exception constructor.
See Also