In case of internal errors (excluding validation), the errors should be exposed via a OnError event, that the consumer can subscribe to. In general, the engine should not break due to an exception.
public delegate void ErrorHandler(Exception ex);
public class CovoxEngine
{
public event ErrorHandler OnError;
}
In case of internal errors (excluding validation), the errors should be exposed via a
OnError
event, that the consumer can subscribe to. In general, the engine should not break due to an exception.