Skip to content

Commit 762c4ce

Browse files
committed
add more information to errors
1 parent 8fcc70e commit 762c4ce

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/io/bioimage/modelrunner/pytorch/PytorchInterface.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -198,11 +198,11 @@ private void launchModelLoadOnProcess() throws IOException, InterruptedException
198198
if (task.status == TaskStatus.CANCELED)
199199
throw new RuntimeException();
200200
else if (task.status == TaskStatus.FAILED)
201-
throw new RuntimeException();
201+
throw new RuntimeException(task.error);
202202
else if (task.status == TaskStatus.CRASHED) {
203203
this.runner.close();
204204
runner = null;
205-
throw new RuntimeException();
205+
throw new RuntimeException(task.error);
206206
}
207207
}
208208

@@ -323,11 +323,11 @@ void runInterprocessing(List<Tensor<T>> inputTensors, List<Tensor<R>> outputTens
323323
if (task.status == TaskStatus.CANCELED)
324324
throw new RuntimeException();
325325
else if (task.status == TaskStatus.FAILED)
326-
throw new RuntimeException();
326+
throw new RuntimeException(task.error);
327327
else if (task.status == TaskStatus.CRASHED) {
328328
this.runner.close();
329329
runner = null;
330-
throw new RuntimeException();
330+
throw new RuntimeException(task.error);
331331
}
332332
for (int i = 0; i < outputTensors.size(); i ++) {
333333
String name = (String) Types.decode(encOuts.get(i)).get(MEM_NAME_KEY);
@@ -451,11 +451,11 @@ public void closeModel() {
451451
if (task.status == TaskStatus.CANCELED)
452452
throw new RuntimeException();
453453
else if (task.status == TaskStatus.FAILED)
454-
throw new RuntimeException();
454+
throw new RuntimeException(task.error);
455455
else if (task.status == TaskStatus.CRASHED) {
456456
this.runner.close();
457457
runner = null;
458-
throw new RuntimeException();
458+
throw new RuntimeException(task.error);
459459
}
460460
this.runner.close();
461461
this.runner = null;

0 commit comments

Comments
 (0)