I am using 18.5 of the .NET Library, using the latest ReportUtilities bits in v201409.
I have code that retries report downloads when Exceptions occur. My catch block looks like this:
catch( Exception aaa )
{
var asrep = xxx as ReportsException;
if ( null != asrep )
{
// check length of asrep.Errors.Length and string value of asrep.Errors[0] and log that issue
}
However, ReportsException is now marked as Deprecated, and the reference URI at
https://github.com/googleads/googleads-dotnet-lib/wiki/Migrating-to-the-new-version-of-ReportUtilities does not say how to catch errors and Exceptions. How should this code be handled now?
Thanks.