File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -240,9 +240,9 @@ _______________________________
240240 3)Changed retry interval from second to millisecond
241241
242242 4)Added one more request header "v-c-client-computetime" to calculate time taken to send request to Cybersource
243-
244- 5 ) Added troubleshooting section in README.
245-
243+
244+ 5)Added troubleshooting section in README.
245+
246246Version Cybersource-sdk-java 6.2.9 (APR,2020)
247247_______________________________
248248 1)Corrected request header name
@@ -336,12 +336,12 @@ _______________________________
336336 Client.runTransaction(requestMap, merchantProperties);
337337 }catch (ClientException e){
338338 e.getInnerException().printStackTrace();
339+ // or
340+ String stackTrace = Utility.getStackTrace(e.getInnerException() != null? e.getInnerException(): e);
339341 }
340342
341- or
342-
343- String stackTrace = Utility.getStackTrace(e.getInnerException());
344-
343+
344+
345345## Documentation
346346- For more information about CyberSource services, see < https://www.cybersource.com/en-us/support/technical-documentation.html > .
347347- For all other support needs, see < https://support.cybersource.com/ > .
Original file line number Diff line number Diff line change @@ -355,11 +355,10 @@ _______________________________
355355 Client.runTransaction(requestMap, merchantProperties);
356356 }catch (ClientException e){
357357 e.getInnerException().printStackTrace();
358+ // or
359+ String stackTrace = Utility.getStackTrace(e.getInnerException() != null? e.getInnerException(): e);
358360 }
359361
360- or
361-
362- String stackTrace = Utility.getStackTrace(e.getInnerException());
363362
364363##Documentation
365364
You can’t perform that action at this time.
0 commit comments