96. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 9/15/2018 10:47:42 PM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

96.1 Files compared

# Location File Last Modified
1 MHV_2018.4.0.0.zip\2018.4.0.0\national portal\mhv_source\mhv_integration\mhv-integration-clients\mhv-integration-cvix-wsclient\src\main\java\gov\va\med\mhv\integration\phr\service\cvix\client CVIXClientException.java Thu Aug 23 21:24:46 2018 UTC
2 MHV_2018.4.0.0.zip\2018.4.0.0\national portal\mhv_source\mhv_integration\mhv-integration-clients\mhv-integration-cvix-wsclient\src\main\java\gov\va\med\mhv\integration\phr\service\cvix\client CVIXClientException.java Sat Sep 15 20:56:39 2018 UTC

96.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 98
Changed 1 2
Inserted 0 0
Removed 0 0

96.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

96.4 Active regular expressions

No regular expressions were active.

96.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.m hv.integra tion.phr.s ervice.cvi x.client;
  5  
  6   /**
  7    * @author   DNS
  8    *
  9    */
  10   public cla ss CVIXCli entExcepti on extends  Exception  {
  11  
  12           pr ivate stat ic final l ong serial VersionUID  = 8825052 6417226948 41L;
  13  
  14           pu blic CVIXC lientExcep tion() {
  15           }
  16  
  17           /* *
  18            *  @param me ssage
  19            * /
  20           pu blic CVIXC lientExcep tion(Strin g message)  {
  21                    supe r(message) ;
  22           }
  23  
  24           /* *
  25            *  @param ca use
  26            * /
  27           pu blic CVIXC lientExcep tion(Throw able cause ) {
  28                    supe r(cause);
  29           }
  30  
  31           /* *
  32            *  @param me ssage
  33            *  @param ca use
  34            * /
  35           pu blic CVIXC lientExcep tion(Strin g message,  Throwable  cause) {
  36                    supe r(message,  cause);
  37           }
  38  
  39           /* *
  40            *  @param me ssage
  41            *  @param ca use
  42            *  @param en ableSuppre ssion
  43            *  @param wr itableStac kTrace
  44            * /
  45           pu blic CVIXC lientExcep tion(Strin g message,  Throwable  cause,
  46                             boolea n enableSu ppression,  boolean w ritableSta ckTrace) {
  47                    supe r(message,  cause, en ableSuppre ssion, wri tableStack Trace);
  48           }
  49  
  50   }