Skip to content

Commit

Permalink
Fixed bug in "novel structure, duplicate corp name" case where bug wa…
Browse files Browse the repository at this point in the history
…s caught but not properly bubbled up.
  • Loading branch information
bffrost committed Feb 13, 2017
1 parent cef0136 commit 57171e6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,8 @@ public Parent validateParent(Parent parent, Collection<BulkLoadPropertyMappingDT
}
}catch (EmptyResultDataAccessException empty){
foundParent = null;
}catch (DupeParentException dupe){
throw dupe;
}catch (Exception e){
logger.error("Caught exception comparing parent structures for parent corp name: "+parent.getCorpName(),e);
foundParent = null;
Expand Down

0 comments on commit 57171e6

Please sign in to comment.