17. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/24/2017 5:17:18 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.

17.1 Files compared

# Location File Last Modified
1 MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_rxrefill\mhv-rx-refill-portal-common\src\main\java\gov\va\med\framework InvalidConfigurationException.java Thu Feb 11 17:10:00 2016 UTC
2 MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_rxrefill\mhv-rx-refill-portal-common\src\main\java\gov\va\med\framework InvalidConfigurationException.java Fri Mar 24 20:29:06 2017 UTC

17.2 Comparison summary

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

17.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

17.4 Active regular expressions

No regular expressions were active.

17.5 Comparison detail

  1   package go v.va.med.f ramework;
  2  
  3   /**
  4    * Runtime  derivativ e of <code >Infrastru ctureExcep tion</code > that sig nals an in valid conf iguration  scenario.
  5    * @author   PII
  6    *          Date: Mar  14, 2005
  7    *          Time: 8:5 1:58 PM
  8    */
  9   public cla ss Invalid Configurat ionExcepti on extends  RuntimeEx ception {
  10           
  11           pr ivate stat ic final l ong serial VersionUID  = -733811 9617158577 621L;
  12  
  13           pu blic Inval idConfigur ationExcep tion() {
  14                    supe r();
  15           }
  16  
  17           pu blic Inval idConfigur ationExcep tion(Strin g message)  {
  18                    supe r(message) ;
  19           }
  20  
  21           pu blic Inval idConfigur ationExcep tion(Throw able cause ) {
  22                    supe r(cause);
  23           }
  24  
  25           pu blic Inval idConfigur ationExcep tion(Strin g message,  Throwable  cause) {
  26                    supe r(message,  cause);
  27           }
  28   }