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
Often in tests it is necessary to mock an API. To simluate a failure mock should be able to throw ErrorResponseException, however its constructor is made private.
Please relax the visibility constraint on constructor (make it at least protected + make class non-final or just make public constructor).
Often in tests it is necessary to mock an API. To simluate a failure mock should be able to throw
ErrorResponseException, however its constructor is made private.Please relax the visibility constraint on constructor (make it at least
protected+ make class non-final or just make public constructor).Thanks