Skip to content

Commit

Permalink
Show underlying error in TCK
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusmelke committed Oct 25, 2018
1 parent 99f16e8 commit 67df105
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ object Neo4jExceptionToExecutionFailed {
case Phase.compile => compileTimeDetail(msg)
case Phase.runtime => runtimeDetail(msg)
}
ExecutionFailed(if(errorType != null) errorType.toString else "", phase, detail)
ExecutionFailed(if(errorType != null) errorType.toString else "", phase, detail, Some(t))
}

private def runtimeDetail(msg: String): String = {
Expand Down

0 comments on commit 67df105

Please sign in to comment.