Skip to content

Commit 16a9182

Browse files
committed
read me changes again
1 parent 153b249 commit 16a9182

2 files changed

Lines changed: 9 additions & 10 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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+
246246
Version 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/>.

zip/README

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)