You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ExampleExceptionHelper does not seem to handle OAuthTokenRequestException. The error NoSuchMethodException is thrown in ExampleExceptionHelper.java on line 23:
// All Bing Ads exceptions have a getFaultInfo method. Method getFaultInfoMethod = exception.getClass().getDeclaredMethod("getFaultInfo", new Class[]{});
The assumption that all Bing Ads exceptions have getFaultInfo is incorrect and is causing the issue.
The text was updated successfully, but these errors were encountered:
The
ExampleExceptionHelper
does not seem to handleOAuthTokenRequestException
. The errorNoSuchMethodException
is thrown in ExampleExceptionHelper.java on line 23:// All Bing Ads exceptions have a getFaultInfo method.
Method getFaultInfoMethod = exception.getClass().getDeclaredMethod("getFaultInfo", new Class[]{});
The assumption that all Bing Ads exceptions have
getFaultInfo
is incorrect and is causing the issue.The text was updated successfully, but these errors were encountered: