Customizing Parsing Engine Errors
You can register your own error-handling callback with the parsing engine to handle errors.
Example
bool MyErrorHandler(ErrorContext ctx)
{
// Handle the error
return true;
// true=continue parsing, false=stop
}
FFReader ffr = (FFReader)docspec.Parse(new DataReader());
ffr.OnErrorEvent += MyErrorHandler;