Skip to content

Commit 474a85e

Browse files
committed
updated readme again
1 parent f03d25d commit 474a85e

File tree

2 files changed

+0
-17
lines changed

2 files changed

+0
-17
lines changed

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff 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>.

zip/README

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

405396
For more information about CyberSource services, see <https://www.cybersource.com/en-us/support/technical-documentation.html>

0 commit comments

Comments
 (0)