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
throwable -> { // This function executes in case of error.
100
-
RequestException e = (RequestException) throwable; // Cast the throwable to RequestException to get the HTTP code and message returned by the MoMo API.
101
-
System.out.println(e.getCode()); // 401
102
-
System.out.println(e.getMessage()); // Access denied due to invalid subscription key. Make sure to provide a valid key for an active subscription.
100
+
RequestException e = (RequestException) throwable;// Cast the throwable to RequestException to get the HTTP code and message returned by the MoMo API.
101
+
System.out.println(e.getCode());// 401
102
+
System.out.println(e.getMessage());// Access denied due to invalid subscription key. Make sure to provide a valid key for an active subscription.
0 commit comments