Skip to content

Commit

Permalink
handle exception
Browse files Browse the repository at this point in the history
  • Loading branch information
cnapagoda committed Aug 18, 2015
1 parent a041ec5 commit 9bc1ba5
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1069,9 +1069,8 @@ public static GovernanceArtifact retrieveGovernanceArtifactByPath(Registry regis
}*/

} catch (RegistryException e) {
String msg =
"Error in retrieving governance artifact by path. path: " + artifactPath + ".";
log.error(msg, e);
String msg = "Error in retrieving governance artifact by path. path: " + artifactPath + ".";
//log.error(msg, e);
throw new GovernanceException(msg, e);
}
return null;
Expand Down

0 comments on commit 9bc1ba5

Please sign in to comment.