Runtime.Error Event
Occurs when an error is detected by Carmenta Engine.
Syntax
public event ErrorEventHandler Error
Remarks
Carmenta Engine allows you to suppress errors in some classes, meaning they will not cause exceptions to be raised. Some of these will send the error information through this event which allows you to write code that handles the errors.
An error event will be sent if a dataset has DataSet.SuppressInitializationErrors set to True or is initialized with the OnDemandSuppressErrors flag, and a problem occurs when it eventually gets initialized. Usually you will then want to disable the layer that uses the dataset and show some form of indication in your GUI that the layer failed to be initialized.
The event will be fired on the thread on which the error occurred, which could be the application GUI thread or any background thread.
Note that there are several different ways to get error notifications and deal with them, see Dealing with errors for more information.
Platforms
Windows, Linux, Android