Skip to content

Commit

Permalink
Merge pull request #1259 from openlibraryenvironment/OLE-9016
Browse files Browse the repository at this point in the history
OLE-9016 : EDI failure
  • Loading branch information
NSSuresh11 authored Mar 8, 2019
2 parents ae92e3b + 6fef197 commit ed72139
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,9 @@ public String getDetailedMessage(Exception exception) {
detailedMessage.append("\n");
}
detailedMessage.append(className + "." + methodName + "():line#" + lineNumber+" \n");
detailedMessage.append(exception.getCause().getMessage().toString());
if(exception.getCause() != null) {
detailedMessage.append(exception.getCause().toString());
}
}
}
return detailedMessage.toString();
Expand Down

0 comments on commit ed72139

Please sign in to comment.