File tree Expand file tree Collapse file tree 2 files changed +0
-17
lines changed Expand file tree Collapse file tree 2 files changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -350,21 +350,13 @@ _______________________________
350350
351351- Put below block of code to handle the ClientException to print the complete stacktrace.
352352
353- In 6.2.10 or below releases, handle the exception as
354353 try{
355354 Client.runTransaction(requestMap, merchantProperties);
356355 }catch (ClientException e){
357356 e.getInnerException().printStackTrace();
358357 // or
359358 String stackTrace = Utility.getStackTrace(e.getInnerException() != null? e.getInnerException(): e);
360359 }
361-
362- In 6.2.11 release onward, handle the exception as
363- try{
364- Client.runTransaction(requestMap, merchantProperties);
365- }catch (ClientException e){
366- String stackTrace = Utility.getStackTrace(e);
367- }
368360
369361## Documentation
370362- For more information about CyberSource services, see < https://www.cybersource.com/en-us/support/technical-documentation.html > .
Original file line number Diff line number Diff line change @@ -383,7 +383,6 @@ _______________________________
383383
384384- Put below block of code to handle the ClientException to print the complete stacktrace.
385385
386- In 6.2.10 or below releases, handle the exception as
387386 try{
388387 Client.runTransaction(requestMap, merchantProperties);
389388 }catch (ClientException e){
@@ -392,14 +391,6 @@ _______________________________
392391 String stackTrace = Utility.getStackTrace(e.getInnerException() != null? e.getInnerException(): e);
393392 }
394393
395- In 6.2.11 release onward, handle the exception as
396- try{
397- Client.runTransaction(requestMap, merchantProperties);
398- }catch (ClientException e){
399- String stackTrace = Utility.getStackTrace(e);
400- }
401-
402-
403394##Documentation
404395
405396For more information about CyberSource services, see <https://www.cybersource.com/en-us/support/technical-documentation.html>
You can’t perform that action at this time.
0 commit comments