Skip to content

Commit 3bf74cf

Browse files
committed
more verbose exception
1 parent f006cee commit 3bf74cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/bioimage/modelrunner/onnx/OnnxInterface.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public void run(List<Tensor<?>> inputTensors, List<Tensor<?>> outputTensors) thr
152152
tt.close();
153153
}
154154
throw new RunModelException("Error trying to run an Onnx model."
155-
+ System.lineSeparator() + ex.getCause().toString());
155+
+ System.lineSeparator() + ex.toString());
156156
}
157157

158158
// Fill the agnostic output tensors list with data from the inference result

0 commit comments

Comments
 (0)